-
Notifications
You must be signed in to change notification settings - Fork 4
90 lines (72 loc) · 2.09 KB
/
ci.yaml
File metadata and controls
90 lines (72 loc) · 2.09 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: CI
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
check:
name: Check (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
run: rustup update stable
- name: Make sure necessary tools are installed
run: rustup component add clippy --toolchain stable
- name: Setup rust-cache
uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- name: Run cargo clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Check formatting (cargo fmt)
run: cargo fmt --all --check
test:
name: Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
run: rustup update stable
- name: Setup rust-cache
uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- name: Run cargo test
run: cargo test --all-features
toml:
name: Format (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust toolchain
run: rustup update stable
- name: Setup rust-cache
uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- name: Install latest cargo-machete
uses: taiki-e/install-action@cargo-machete
- name: Install latest taplo
uses: taiki-e/install-action@taplo
- name: Check unused dependencies (cargo machete)
run: cargo machete
- name: Check TOML formatting (taplo)
if: ${{ !contains(matrix.os, 'windows') }}
run: taplo fmt --check --diff