Skip to content

Commit

Permalink
Check MSRV explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
cschwan committed Aug 23, 2023
1 parent fa4efb1 commit c04887a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/msrv.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: MSRV

on:
push:

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: ubuntu-20.04
container: ghcr.io/nnpdf/pineappl-ci:latest
steps:
- uses: actions/checkout@v3

- name: Run check
run: |
# enable the MSRV
rustup default 1.64.0
cargo check --all-features --all-targets

0 comments on commit c04887a

Please sign in to comment.