-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (52 loc) · 1.53 KB
/
ci.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
name: CI
on:
push:
paths-ignore:
- "**/README.md"
- "**/README.*.md"
- "**/*.example"
- "/.vscode/**"
pull_request:
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
rust-checks:
name: Rust Checks
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
action:
- command: build
args: --release
- command: build
args: --release --features=led,clipboard
- command: build
args: --release --features=m5atoms3-lite
- command: build
args: --release --features=m5atoms3
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --release --workspace -- -D warnings
- command: clippy
args: --release --features=m5atoms3-lite --workspace -- -D warnings
- command: clippy
args: --release --features=smartled,clipboard --workspace -- -D warnings
- command: clippy
args: --release --features=m5atoms3 --workspace -- -D warnings
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Rust
uses: esp-rs/xtensa-toolchain@v1.5
with:
default: true
buildtargets: esp32
ldproxy: false
- name: Enable caching
uses: Swatinem/rust-cache@v2
- name: Run command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}