Skip to content

Commit

Permalink
try sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
TIL-EBP committed Oct 30, 2024
1 parent 99dc179 commit d7b3d4d
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,8 @@ jobs:
format-api:
runs-on: ubuntu-latest
needs:
- install-api
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -213,15 +215,17 @@ jobs:
sqlx migrate run
- name: Run fmt
run: |
rustup component add rustfmt
cargo fmt
docker compose exec api rustup component add rustfmt
docker compose exec api cargo fmt
- name: Run clippy
run: |
rustup component add clippy
cargo clippy
docker compose exec api rustup component add clippy
docker compose exec api cargo clippy
test-api:
runs-on: ubuntu-latest
needs:
- install-api
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -256,7 +260,6 @@ jobs:
needs:
- test-api
- format-api
- install-api
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down Expand Up @@ -286,7 +289,5 @@ jobs:
cd api
docker compose exec api cargo build
# test-api:

0 comments on commit d7b3d4d

Please sign in to comment.