Skip to content

Commit

Permalink
Merge branch 'main' into julio/build-system
Browse files Browse the repository at this point in the history
  • Loading branch information
hoolioh committed Sep 5, 2024
2 parents 36235c9 + c035537 commit 498e0ed
Show file tree
Hide file tree
Showing 29 changed files with 1,891 additions and 1,131 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ jobs:
run: rustup install ${{ matrix.rust_version }} && rustup default ${{ matrix.rust_version }} && rustup component add clippy
- name: Run clippy on ${{ matrix.platform }} ${{ matrix.rust_version }}
shell: bash
run: cargo clippy --workspace --all-targets --all-features -- -D warnings "$([ ${{ matrix.rust_version }} = 1.71.1 ] && echo -Aunknown-lints)"
run: |
# shellcheck disable=SC2046
cargo clippy --workspace --all-targets --all-features -- -D warnings $([ ${{ matrix.rust_version }} = 1.71.1 ] && echo -Aunknown-lints -Aclippy::cast_ref_to_mut)
licensecheck:
runs-on: ubuntu-latest
name: "Presence of licence headers"
Expand Down
73 changes: 43 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 498e0ed

Please sign in to comment.