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
name: CI
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint-test:
name: Lint + Test
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
toolchain:
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Linting
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets --all-features -- -D warnings
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: xtask
args: test
# miri:
# name: Miri
# runs-on: ubuntu-22.04
# env:
# TOOLCHAIN: nightly
# steps:
# - uses: actions/checkout@v3
#
# - name: Install Rust
# uses: dtolnay/rust-toolchain@v1
# with:
# toolchain: ${{ env.TOOLCHAIN }}
# components: miri, rust-src
#
# - name: Cache
# uses: Swatinem/rust-cache@v2
#
# - name: Run miri tests
# uses: actions-rs/cargo@v1
# with:
# command: xtask
# args: miri test