Skip to content

Commit

Permalink
ci: Run clippy on macOS against brew z3.
Browse files Browse the repository at this point in the history
This is faster than having it do a build of Z3 as it does now
and by running it on macOS against the brew installed Z3, it is
going to be a more recent version of Z3 than what the system
Z3 on Linux would be.
  • Loading branch information
waywardmonkeys committed Oct 23, 2023
1 parent 530b6ac commit 105b743
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,10 +145,10 @@ jobs:
run: cargo test --manifest-path z3/Cargo.toml -vv --features 'vcpkg arbitrary-size-numeral'

run_clippy:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Z3
run: brew install z3
- name: Run clippy
run: cargo clippy -vv --features static-link-z3 --all-targets
run: cargo clippy -vv --workspace --all-targets

0 comments on commit 105b743

Please sign in to comment.