Skip to content

Commit

Permalink
fixup!: separate docker-compose commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolv-Apneseth committed Nov 12, 2024
1 parent 52e9e5a commit 88715ec
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@ jobs:
run: |
if [ "$RUNNER_OS" == "macOS" ]; then
brew install docker docker-compose
docker-compose up -d --wait
else
docker compose up -d --wait
fi
docker compose up -d --wait
cargo test --all --verbose
docker compose down
if [ "$RUNNER_OS" == "macOS" ]; then
docker-compose down
else
docker compose down
fi

0 comments on commit 88715ec

Please sign in to comment.