-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (34 loc) · 928 Bytes
/
rust_ci.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
name: Continuous Integration
on:
push:
paths-ignore:
- "**/*.md"
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: --color always
- command: fmt
args: --all -- --check --color always
- command: clippy
args: --all-features --workspace -- -D warnings
- command: test
args: --color always
steps:
- name: Install XCB
run: sudo apt install -y libxcb1-dev libxcb-randr0-dev libxcb-shm0-dev
- uses: actions/checkout@v4
- name: Enable Caching
uses: Swatinem/rust-cache@v2
- name: Run Command
run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }}