Skip to content

Commit

Permalink
Fix: CI checks are incomplete
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Jan 7, 2023
1 parent f0af06c commit 62cd316
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: taiki-e/install-action@cross

- name: Build
run: cross build --release --target=${{ matrix.target }}
run: cross build --all-features --all-targets --release --target=${{ matrix.target }}

test:
name: Test Suite
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
run: cargo fmt --all -- --check

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

docs:
name: Documentation
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rust-clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
run:
cargo clippy
--all-features
--all-targets
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true

Expand Down

0 comments on commit 62cd316

Please sign in to comment.