-
Notifications
You must be signed in to change notification settings - Fork 12
55 lines (43 loc) · 1.43 KB
/
test.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
44
45
46
47
48
49
50
51
52
53
54
55
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow
# Same as file name
name: test
permissions:
contents: read
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
rust: stable
workspace-extra-args: ""
# Minimum Supported Rust Version (MSRV)
- os: ubuntu-latest
rust: 1.65.0
workspace-extra-args: "--exclude player --exclude writer"
steps:
- name: Install dependencies
run: sudo apt install alsa libasound2-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
# We have to use `master` and pass the toolchain explicitly
toolchain: ${{ matrix.rust }}
- 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:
# The cache should not be shared between different workflows and jobs.
shared-key: ${{ github.workflow }}-${{ github.job }}
- name: Run workspace tests
run: cargo test --locked --workspace --features decode-all ${{ matrix.workspace-extra-args }} -- --nocapture --quiet