-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (40 loc) · 1.14 KB
/
Copy pathci.yml
File metadata and controls
50 lines (40 loc) · 1.14 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
fmt:
name: rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --all -- --check
clippy-and-test:
name: clippy + test (windows-latest)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
# Windows CI runners don't have a configured MSVC linker path matching
# the one pinned in .cargo/config.toml. Skip that config for CI so the
# bundled MSVC toolchain is used directly.
- name: Remove local linker override
shell: pwsh
run: Remove-Item -Force .cargo/config.toml
- name: Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Build
run: cargo build --all-targets --verbose
- name: Test
run: cargo test --all-targets --verbose