-
Notifications
You must be signed in to change notification settings - Fork 16
43 lines (32 loc) · 1.04 KB
/
msrv.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
name: msrv
# read-only repo token, no access to secrets
permissions:
contents: read
on:
push:
branches: [main]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
check-workspace:
runs-on: ubuntu-latest
steps:
- name: Install ALSA and Jack dependencies
run: |
sudo apt-get update && sudo apt-get install -y libasound2-dev libjack-jackd2-dev cmake
- name: Install Rust toolchain
# Aligned with `rust-version` in `Cargo.toml`
uses: dtolnay/rust-toolchain@1.70
- name: Check out repository
uses: actions/checkout@v3
- name: Generate Cargo.lock
run: cargo generate-lockfile
- name: Cache Rust toolchain and build artifacts
uses: Swatinem/rust-cache@v2
with:
# Distinguished by the action name to avoid sharing!
shared-key: "msrv"
- name: Check workspace
run: cargo check --locked --workspace --verbose --all-targets --all-features