Skip to content

Commit

Permalink
Attempt to fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Oct 12, 2023
1 parent 3910aaa commit 90be21d
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,29 @@ jobs:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
strategy:
matrix:
rust_version:
- "stable"
- "1.63.0"
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@${{ matrix.rust_version }}
uses: dtolnay/rust-toolchain@stable

#- uses: Swatinem/rust-cache@v1

- name: Run cargo test
run: cargo test -- --test-threads 1

test_msrv:
name: Test Suite (for MSRV)
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@1.63.0

#- uses: Swatinem/rust-cache@v1

Expand Down

0 comments on commit 90be21d

Please sign in to comment.