Skip to content

Commit

Permalink
ci(github-actions): don't run cargo outdated audit & pants on other p…
Browse files Browse the repository at this point in the history
…latforms
  • Loading branch information
graelo committed Nov 8, 2022
1 parent 4f1e9d8 commit d37d9db
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/large-scope.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,23 +133,23 @@ jobs:
# cargo deny check
# shell: bash

- name: Install cargo check tools
timeout-minutes: 20
run: |
cargo install --locked cargo-outdated || true
# cargo install --locked cargo-udeps || true # needs nightly
cargo install --locked cargo-audit || true
cargo install --locked cargo-pants || true
shell: bash
# - name: Install cargo check tools
# timeout-minutes: 20
# run: |
# cargo install --locked cargo-outdated || true
# # cargo install --locked cargo-udeps || true # needs nightly
# cargo install --locked cargo-audit || true
# cargo install --locked cargo-pants || true
# shell: bash

- name: Check
run: |
cargo outdated --exit-code 1
# cargo udeps
rm -rf ~/.cargo/advisory-db
cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
cargo pants
shell: bash
# - name: Check
# run: |
# cargo outdated --exit-code 1
# # cargo udeps
# rm -rf ~/.cargo/advisory-db
# cargo audit --ignore RUSTSEC-2020-0071 # time-rs, but not used by chrono, see https://github.com/chronotope/chrono/issues/602
# cargo pants
# shell: bash

- name: Build (dev)
run: cargo build --all-features
Expand Down

0 comments on commit d37d9db

Please sign in to comment.