Skip to content

Commit

Permalink
try to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ayrat555 committed Apr 12, 2024
1 parent 5ed857f commit 330539a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:

steps:
- uses: actions/checkout@v3


- name: Setup Rust
run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}


- name: Run clippy
run: cargo clippy --verbose --all-targets --all-features -- -D warnings

test_postgres_blocking:
name: Test blocking
runs-on: ubuntu-latest
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

- name: Run blocking tests
run: cargo test "blocking::queue::postgres" --verbose --features blocking --color always -- --nocapture

- name: Run blocking dirty tests
run: cargo test "blocking::worker" --verbose --features blocking -- --ignored

Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:

- name: Setup MySQL db
working-directory: ./fang/mysql_migrations
run: diesel setup --database-url "mysql://root:mysql@localhost/fang"
run: diesel setup --database-url "mysql://root:mysql@127.0.0.1/fang"

- name: Run tests
run: cargo test "asynk::async_queue::mysql" --verbose --features asynk-mysql --color always -- --nocapture
run: cargo test "asynk::async_queue::mysql" --verbose --features asynk-mysql --color always -- --nocapture

0 comments on commit 330539a

Please sign in to comment.