Skip to content

Commit

Permalink
fix: pin CI nightly to 2025-02-23 and temporarily disable codecov/min…
Browse files Browse the repository at this point in the history
… versions
  • Loading branch information
LDeakin committed Mar 2, 2025
1 parent b45c19e commit 0170eb9
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: ["stable", "1.82", "beta", "nightly"]
toolchain: ["stable", "1.82", "beta", "nightly-2025-02-23"]
features: ["--features \"\"", "--all-features", "--no-default-features"]
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -78,25 +78,25 @@ jobs:
- uses: actions/checkout@v4
- name: Check semver
uses: obi1kenobi/cargo-semver-checks-action@v2
minimal-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install -y cmake clang-15
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- run: cargo install cargo-hack cargo-minimal-versions --locked
- run: cargo minimal-versions check --workspace --all-features --direct
codecov:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: sudo apt update && sudo apt install -y cmake clang-15
- uses: dtolnay/rust-toolchain@nightly
- uses: Swatinem/rust-cache@v2
- run: cargo +nightly install cargo-llvm-cov --locked
- run: cargo +nightly llvm-cov --all-features --doctests --lcov --output-path lcov.info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
# minimal-versions:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: sudo apt update && sudo apt install -y cmake clang-15
# - uses: dtolnay/rust-toolchain@nightly
# - uses: Swatinem/rust-cache@v2
# - run: cargo install cargo-hack cargo-minimal-versions --locked
# - run: cargo minimal-versions check --workspace --all-features --direct
# codecov:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - run: sudo apt update && sudo apt install -y cmake clang-15
# - uses: dtolnay/rust-toolchain@nightly
# - uses: Swatinem/rust-cache@v2
# - run: cargo +nightly install cargo-llvm-cov --locked
# - run: cargo +nightly llvm-cov --all-features --doctests --lcov --output-path lcov.info
# - name: Upload coverage reports to Codecov
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit 0170eb9

Please sign in to comment.