Skip to content

Commit

Permalink
test again
Browse files Browse the repository at this point in the history
  • Loading branch information
helio-frota committed Dec 12, 2024
1 parent c0579fd commit 4244594
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install stable --profile minimal --no-self-update
- name: cargo fmt -> check -> clippy -> test
run: |
cargo fmt --check
cargo check
cargo clippy --all-targets --all-features -- -D warnings -D clippy::unwrap_used -D clippy::expect_used
cargo test
- name: fmt --check
run: cargo fmt --check
- name: check
run: cargo check
- name: clippy
run: cargo clippy --all-targets --all-features -- -D warnings -D clippy::unwrap_used -D clippy::expect_used
- name: test
run: cargo test

0 comments on commit 4244594

Please sign in to comment.