Skip to content

Commit

Permalink
fixing workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
pxp9 committed Apr 8, 2024
1 parent 56c2dc9 commit c35cc3b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ jobs:
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test "asynk::async_queue::postgres"
args: --verbose --features asynk-postgres
command: test
args: "asynk::async_queue::postgres" --verbose --features asynk-postgres

- name: Run dirty tests
uses: actions-rs/cargo@v1
with:
command: test "asynk::async_queue::postgres"
args: --verbose features asynk-postgres -- --ignored
command: test
args: "asynk::async_queue::postgres" --verbose features asynk-postgres -- --ignored

test_sqlite:
name: Test sqlite
Expand Down Expand Up @@ -124,14 +124,14 @@ jobs:
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test "asynk::async_queue::sqlite"
args: --verbose --features asynk-sqlite
command: test
args: "asynk::async_queue::sqlite" --verbose --features asynk-sqlite

- name: Run dirty tests
uses: actions-rs/cargo@v1
with:
command: test "asynk::async_queue::sqlite"
args: --verbose --features asynk-sqlite -- --ignored
command: test
args: "asynk::async_queue::sqlite" --verbose --features asynk-sqlite -- --ignored

release:
name: Release x86_64-unknown-linux-gnu
Expand Down

0 comments on commit c35cc3b

Please sign in to comment.