Skip to content

Commit

Permalink
Fix to build stable and msrv
Browse files Browse the repository at this point in the history
  • Loading branch information
lusingander committed Sep 8, 2024
1 parent ed95d0e commit ca80391
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,17 @@ env:

jobs:
build:
strategy:
matrix:
versions:
- stable
- '1.79.0' # MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.versions }}
- name: Version
run: |
rustc --version
Expand Down

0 comments on commit ca80391

Please sign in to comment.