Skip to content

Commit

Permalink
Increment cargo version in Github actions to MSRV.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Sep 8, 2024
1 parent 27ab657 commit 4f2186d
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/Simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,30 @@ on:
[push, pull_request, workflow_dispatch]

jobs:
build:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [1.63.0]
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
- run: cargo check
- run: cargo build

test:
name: Rust ${{matrix.rust}}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [1.51.0, stable, beta, nightly]
rust: [1.65.0, stable, beta, nightly]
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit 4f2186d

Please sign in to comment.