fix(ci): only start run command in background

This commit is contained in:
Bob Bobs
2024-02-11 08:27:57 -07:00
committed by Paul Makles
parent 4c4dada3da
commit 6d4f772d78

View File

@@ -57,7 +57,7 @@ jobs:
env:
TEST_DB: REFERENCE
run: |
cargo build --bin revolt-delta && cargo run --bin revolt-delta &
cargo build --bin revolt-delta && (cargo run --bin revolt-delta &)
- name: Wait for API to go up
if: github.event_name != 'pull_request' && github.ref_name == 'master'