-
Notifications
You must be signed in to change notification settings - Fork 62
98 lines (96 loc) · 2.78 KB
/
rust.yml
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
91
92
93
94
95
96
97
98
name: rust checks
on: [push, pull_request]
jobs:
clippy:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.70.0]
include:
- os: windows-latest
toolchain: 1.70.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-clippy-${{ hashFiles('Cargo.lock', 'Cargo.toml') }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- uses: msys2/setup-msys2@v2
with:
release: false
update: false
msystem: MINGW64
install: >-
mingw-w64-x86_64-gcc
mingw-w64-x86_64-make
patch
if: runner.os == 'Windows'
- name: Update PATH
run: |
(Resolve-Path c:/msys64/mingw64/bin).Path >> $Env:GITHUB_PATH
if: runner.os == 'Windows'
# From https://github.com/actions-rs/clippy-check/pull/165
- uses: kristof-mattei/clippy-check@9615027d0d038d93ede0037e3629366a5ba2ecf8
with:
args: -vv --features self-update -- -D warnings
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.70.0
components: rustfmt
- run: cargo fmt -- --check
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
toolchain: [1.70.0, 1.60.0]
include:
- os: windows-latest
toolchain: 1.70.0-x86_64-pc-windows-gnu
- os: windows-latest
toolchain: 1.60.0-x86_64-pc-windows-gnu
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-${{ matrix.toolchain }}-test-${{ hashFiles('Cargo.lock', 'Cargo.toml') }}
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
- uses: msys2/setup-msys2@v2
with:
release: false
update: false
msystem: MINGW64
install: >-
mingw-w64-x86_64-gcc
mingw-w64-x86_64-make
patch
if: runner.os == 'Windows'
- name: Update PATH
run: |
(Resolve-Path c:/msys64/mingw64/bin).Path >> $Env:GITHUB_PATH
if: runner.os == 'Windows'
- run: cargo test