Skip to content

Commit

Permalink
Add a MSRV CI job
Browse files Browse the repository at this point in the history
Currently targeting Rust 1.59.0
  • Loading branch information
messense committed Aug 30, 2022
1 parent 8f371ff commit bbb8f74
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -399,3 +399,21 @@ jobs:
with:
name: wheels
path: dist

test-msrv:
name: Test MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: '1.59.0'
override: true
# Caching
- name: Cache cargo build
uses: Swatinem/rust-cache@v1
with:
key: maturin-${{ runner.os }}-msrv
- name: cargo build
run: cargo build --all

0 comments on commit bbb8f74

Please sign in to comment.