Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
nikola-bozin-org committed May 4, 2024
1 parent b8ecf6d commit b57898e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ jobs:

- name: Build server
run: |
cd server
cargo build --verbose --release
cd server
cargo build --verbose --release
- name: Delay for all docker service startup # TODO: its good for now... but have to fix later
run: sleep 15

- name: Run tests in server
run: |
cd server
cargo test --verbose -- --nocapture
cd server
cargo test --verbose -- --nocapture
- name: Build worker
run: |
cd worker
cargo build --verbose --release
cd worker
cargo build --verbose --release
- name: Run tests in worker
run: |
cd worker
cargo test --verbose -- --nocapture
cd worker
cargo test --verbose -- --nocapture

0 comments on commit b57898e

Please sign in to comment.