Skip to content

Commit

Permalink
Merge pull request #360 from Marwes/cargo
Browse files Browse the repository at this point in the history
chore: Update CI to run against rust 1.61
  • Loading branch information
Marwes committed Dec 12, 2023
2 parents 805862b + a88b5eb commit da5b684
Show file tree
Hide file tree
Showing 2 changed files with 557 additions and 285 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
build:
strategy:
matrix:
rust: [1.51.0, stable, beta, nightly]
rust: [1.61.0, stable, beta, nightly]
env:
CARGO_INCREMENTAL: 0 # Incremental compilation is slower and bloats the cache
RUST_BACKTRACE: 1
Expand All @@ -32,14 +32,14 @@ jobs:
- name: Build
run: cargo build

- name: Check 1.51
if: ${{ matrix.rust == '1.51.0' }}
- name: Check 1.61
if: ${{ matrix.rust == '1.61.0' }}
run: |
cargo "$@" check
cargo "$@" check --no-default-features
- name: Run tests
if: ${{ matrix.rust != '1.51.0' }}
if: ${{ matrix.rust != '1.61.0' }}
run: ./ci.sh

- name: Check docs
Expand Down
Loading

0 comments on commit da5b684

Please sign in to comment.