Skip to content

Commit

Permalink
Disable redundant/superfluous CI jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
regexident committed May 22, 2024
1 parent 57ce768 commit 9933c05
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:
shell: bash
run: rustup --version

check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: stable
- run: cargo check
# check:
# name: Check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: dtolnay/rust-toolchain@v1
# with:
# toolchain: stable
# - run: cargo check

test:
name: Test Suite
Expand Down Expand Up @@ -76,11 +76,7 @@ jobs:
- uses: taiki-e/install-action@cargo-hack
- uses: taiki-e/install-action@cargo-minimal-versions
- name: minimal-versions check
run: cargo minimal-versions check --workspace --all-features --ignore-private -v
- name: minimal-versions build
run: cargo minimal-versions build --workspace --all-features --ignore-private -v
- name: minimal-versions test
run: cargo minimal-versions test --release --workspace --all-features -v
run: cargo minimal-versions check --workspace --all-features --tests --ignore-private -v
continue-on-error: true

msrv:
Expand All @@ -92,4 +88,4 @@ jobs:
with:
toolchain: nightly
- uses: taiki-e/install-action@cargo-hack
- run: cargo hack check --rust-version --workspace --all-targets --ignore-private
- run: cargo hack check --rust-version --workspace --all-targets --tests --ignore-private -v

0 comments on commit 9933c05

Please sign in to comment.