Skip to content

Commit

Permalink
Only run check for MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
GnomedDev committed Sep 1, 2024
1 parent fee6ca0 commit 3cb62d8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,20 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
rust-version: ["stable", "beta", "nightly", "1.61"]
rust-version: ["stable", "beta", "nightly"]

steps:
- uses: actions/checkout@v4
- run: rustup toolchain install ${{ matrix.rust-version }}
- run: cargo +${{ matrix.rust-version }} test --all

msrv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: rustup toolchain install 1.61
- run: cargo +1.61 check --all

ui-test:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 3cb62d8

Please sign in to comment.