-
Notifications
You must be signed in to change notification settings - Fork 11
73 lines (66 loc) · 1.78 KB
/
rust.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
branches: ['main']
pull_request:
jobs:
test:
name: Test crate
strategy:
matrix:
# unnecessary until macos-latest runs on arm64 arch
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
name: Checkout repository
- uses: actions-rs/toolchain@v1
name: Set up toolchain
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- uses: Swatinem/rust-cache@v2
name: Cache toolchain and dependencies
- uses: actions-rs/cargo@v1
name: Build crate
with:
command: build
args: --all-targets
- uses: actions-rs/cargo@v1
name: Test crate
with:
command: test
lint:
name: Check code style
strategy:
matrix:
# unnecessary until macos-latest runs on arm64 arch
# os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest]
rust: [stable, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
name: Checkout repository
- uses: actions-rs/toolchain@v1
name: Set up toolchain
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
name: Cache toolchain and dependencies
- uses: actions-rs/cargo@v1
name: Check code with cargo fmt
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: Check code with cargo clippy
with:
command: clippy
args: --all-targets -- -D warnings