diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 9b115f58..d994efee 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 @@ -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