Skip to content

Commit

Permalink
Fix error in cargo test call
Browse files Browse the repository at this point in the history
  • Loading branch information
MathiasPius committed Apr 4, 2024
1 parent 6f8cdb0 commit 80fa636
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ jobs:
- name: Run unit tests
uses: actions-rs/cargo@v1
with:
command: test --lib
command: test
args: --lib

- name: Run integration tests
uses: actions-rs/cargo@v1
Expand All @@ -109,7 +110,8 @@ jobs:
HETZNER_INTEGRATION_TEST_SERVER_ID: ${{ secrets.HETZNER_INTEGRATION_TEST_SERVER_ID }}
HETZNER_INTEGRATION_TEST_STORAGEBOX_ID: ${{ secrets.HETZNER_INTEGRATION_TEST_STORAGEBOX_ID }}
with:
command: test --tests
command: test
args: --tests

tag:
name: Tag & Publish
Expand Down

0 comments on commit 80fa636

Please sign in to comment.