Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: audit: remove ignore of time 0.1 vuln (no longer present) #25

Merged
merged 2 commits into from
May 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
CI: move static code checks to ubuntu-only action
this has two reasons:
- the format & audit checks are the same on all platforms, thus running
  it multiple times adds no benefits
- `cargo-audit` seems to be no longer provided on the Mac OS VMs and
  would now have to be manually added (but is still present on Ubuntu &
  Windows).
rursprung committed May 30, 2024
commit 6d73fd1d94552f9dc6e0eafb6039573a4858206f
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -36,12 +36,8 @@ jobs:
run: cargo check ${{ matrix.features }}
- name: test
run: cargo test ${{ matrix.features }}
- name: check formatting
run: cargo fmt --all -- --check
- name: audit
run: cargo audit

clippy:
static-code-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
@@ -56,3 +52,7 @@ jobs:
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
- name: check formatting
run: cargo fmt --all -- --check
- name: audit
run: cargo audit