Skip to content

Commit

Permalink
fix(actions): comment unused steps
Browse files Browse the repository at this point in the history
  • Loading branch information
graelo committed Sep 5, 2022
1 parent 38a85e9 commit d3df81e
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 @@ -43,23 +43,23 @@ jobs:
cargo fmt --all -- --check
cargo clippy -- -D warnings
- name: Install cargo check tools
timeout-minutes: 20
if: ${{ matrix.rust == 'stable' }}
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
# - name: Install cargo check tools
# timeout-minutes: 20
# if: ${{ matrix.rust == 'stable' }}
# 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

- name: Check
if: ${{ matrix.rust == 'stable' }}
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
# - name: Check
# if: ${{ matrix.rust == 'stable' }}
# 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

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

0 comments on commit d3df81e

Please sign in to comment.