-
-
Notifications
You must be signed in to change notification settings - Fork 2
35 lines (28 loc) · 767 Bytes
/
Copy pathci.yml
File metadata and controls
35 lines (28 loc) · 767 Bytes
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
name: ci
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
check:
name: quality checks and tests (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v6
- name: install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: cache dependencies
uses: Swatinem/rust-cache@v2
- name: check formatting
run: cargo fmt --check
- name: lint with clippy
run: cargo clippy --all-targets --locked -- -D warnings
- name: run test suite
run: cargo test --locked