Skip to content

Commit

Permalink
Run MSRV checks on the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Jun 26, 2024
1 parent 23d48b0 commit 1699f8f
Show file tree
Hide file tree
Showing 2 changed files with 888 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ebur128.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,28 @@ jobs:
QUICKCHECK_TESTS: 2
run: |
cargo test --features c-tests,internal-tests,reference-tests
msrv-ubuntu-tests:

runs-on: ubuntu-latest

strategy:
matrix:
toolchain: ['1.60']

steps:
- uses: actions/checkout@v2

- name: Install ${{ matrix.toolchain }}
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true

- name: Use MSRV Cargo.lock
run: cp Cargo.lock.msrv Cargo.lock

- name: Run cargo check
run: |
cargo check
Loading

0 comments on commit 1699f8f

Please sign in to comment.