-
Notifications
You must be signed in to change notification settings - Fork 200
50 lines (44 loc) · 1.35 KB
/
test.yml
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
on:
push: # Run CI for all branches except GitHub merge queue tmp branches
branches-ignore:
- "gh-readonly-queue/**"
pull_request: # Run CI for PRs on any branch
merge_group: # Run CI for the GitHub merge queue
name: Continuous integration
env:
RUSTFLAGS: '--deny warnings'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- 1.60.0 # MSRV
- nightly
target:
- x86_64-unknown-linux-gnu
- thumbv7m-none-eabi
features:
- ''
include:
- rust: stable
target: x86_64-unknown-linux-gnu
features: std
- rust: stable
target: x86_64-unknown-linux-gnu
features: alloc
- rust: nightly
target: x86_64-unknown-linux-gnu
features: std,tokio-1,futures-03,defmt-03
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
- run: mv Cargo.stable.toml Cargo.toml
if: matrix.rust != 'nightly'
- run: cargo check --target=${{ matrix.target }} --features=${{ matrix.features }}
- run: cargo test --target=${{ matrix.target }} --features=${{ matrix.features }}
if: contains(matrix.target, 'linux')