Skip to content

Commit

Permalink
ci: move minimal-versions check to tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 18, 2021
1 parent f5048fc commit 4022640
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,7 @@ jobs:
- uses: taiki-e/github-actions/install-rust@main
with:
toolchain: ${{ matrix.rust }}
- run: cargo install cargo-hack --debug
if: startsWith(matrix.rust, 'nightly')
- run: cargo test --all
- run: tools/check-minimal-versions.sh
if: startsWith(matrix.rust, 'nightly')

build:
strategy:
Expand All @@ -71,9 +67,13 @@ jobs:
- uses: taiki-e/github-actions/install-rust@main
with:
component: clippy,rustfmt
- run: cargo clippy --all --all-features --all-targets
- run: cargo install cargo-hack --debug
- run: cargo fmt --all -- --check
if: always()
- run: cargo clippy --all --all-features --all-targets
if: always()
- run: tools/check-minimal-versions.sh
if: always()
- run: shellcheck **/*.sh
if: always()

Expand Down

0 comments on commit 4022640

Please sign in to comment.