-
-
Notifications
You must be signed in to change notification settings - Fork 10
63 lines (54 loc) · 1.52 KB
/
test.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
name: Test
on:
- push
- pull_request
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v4
timeout-minutes: 1
continue-on-error: true
if: matrix.os != 'macos-latest' # Cache causes errors on macOS
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-${{ hashFiles('**/Cargo.lock') }}
${{ github.job }}-${{ runner.os }}-${{ hashFiles('rust-toolchain') }}-
- uses: dtolnay/rust-toolchain@stable
- name: Test (dev)
env:
FMT: 'false'
LINT: 'false'
DOC: 'true'
BUILD: 'true'
TEST: 'true'
BUILD_FLAGS: '--locked'
TEST_FLAGS: '--no-fail-fast'
run: ./test.sh
- name: Test (release)
env:
RUSTFLAGS: '-D warnings'
RUSTDOCFLAGS: '-D warnings'
FMT: 'false'
LINT: 'false'
DOC: 'true'
BUILD: 'true'
TEST: 'true'
BUILD_FLAGS: '--locked'
TEST_FLAGS: '--no-fail-fast'
run: ./test.sh --release