Skip to content

Commit

Permalink
CI: Make clippy more aggressive
Browse files Browse the repository at this point in the history
Tightens up other CI steps in minor ways.
  • Loading branch information
bisgardo committed Mar 17, 2024
1 parent 4551df4 commit 58048cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint+test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
with:
submodules: recursive
- name: Check formatting
run: cargo fmt --check
run: cargo fmt --all --check
- name: Run linter
run: cargo clippy
run: cargo clippy --all-targets --all-features -- -Dwarnings
- name: Run tests
run: cargo test
- name: Build Swift package (macOS/x86_64 only)
Expand Down
9 changes: 1 addition & 8 deletions .github/workflows/publish-framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,7 @@ jobs:

steps:
- name: Setup Rust
run: |
rustup default "${{env.rust_version}}"
rustup target add \
aarch64-apple-darwin \
aarch64-apple-ios \
aarch64-apple-ios-sim \
x86_64-apple-darwin \
x86_64-apple-ios
run: make setup
- name: Check out sources
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 58048cb

Please sign in to comment.