Skip to content

Commit

Permalink
fix(ci): build only on MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
rustaceanrob committed Dec 4, 2024
1 parent 0e3c78b commit f92ea90
Show file tree
Hide file tree
Showing 2 changed files with 358 additions and 353 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,7 @@ jobs:
rustup update ${{ matrix.toolchain }}
- name: Pin dependencies
if: matrix.msrv
run: |
cargo update -p allocator-api2 --precise "0.2.9" --verbose
cargo update -p tempfile --precise 3.3.0
cargo update -p log --precise 0.4.18
cargo update -p zstd-sys --precise "2.0.8+zstd.1.5.5"
run: cargo update -p allocator-api2 --precise "0.2.9" --verbose
- name: Lint all targets
run: cargo clippy --all-targets
- name: Format
Expand All @@ -41,8 +37,10 @@ jobs:
- name: Check release build on Rust ${{ matrix.toolchain }}
run: cargo check --release --verbose --color always
- name: Unit test
if: ${{ !matrix.msrv }}
run: cargo test --verbose --lib
- name: Doc test
if: ${{ !matrix.msrv }}
run: cargo test --verbose --doc
signet:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit f92ea90

Please sign in to comment.