Skip to content

Commit

Permalink
update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
adamperkowski committed Dec 3, 2024
1 parent 800b404 commit 9dc0a76
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,7 @@ jobs:
run: cargo fmt --all --check

- name: cargo clippy
run: |
cargo clippy -- -Dwarnings
cargo clippy --release -- -Dwarnings
run: cargo clippy --all-features -- -Dwarnings

build:
runs-on: ubuntu-latest
Expand All @@ -45,8 +43,8 @@ jobs:

- name: Build
run: |
cargo build --verbose
cargo build --release --verbose
cargo build --all-features --verbose
cargo build --all-features --release --verbose
test:
runs-on: ubuntu-latest
Expand All @@ -55,9 +53,7 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Test
- name: Test lub & docs
run: |
cargo test --lib
cargo test --lib --release
cargo test --doc
cargo test --doc --release
cargo test --lib --all-features
cargo test --doc --all-features

0 comments on commit 9dc0a76

Please sign in to comment.