-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (62 loc) · 1.99 KB
/
check-dynamic.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
name: dynamic
on: pull_request
jobs:
check-test:
strategy:
matrix:
settings:
- host: windows-latest
target: x86_64-pc-windows-msvc
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: x86_64-unknown-linux-musl
- host: macos-latest
target: aarch64-apple-darwin
- host: macos-latest
target: x86_64-apple-darwin
runs-on: ${{ matrix.settings.host }}
name: test / ${{ matrix.settings.host }} / ${{ matrix.settings.target }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- uses: taiki-e/install-action@nextest
- uses: Swatinem/[email protected]
with:
key: test_${{ matrix.settings.host }}_${{ matrix.settings.target }}
- run: cargo nextest run --all-targets
- run: cargo test --doc
check-build:
strategy:
matrix:
settings:
- host: windows-latest
target: x86_64-pc-windows-msvc
- host: ubuntu-latest
target: x86_64-unknown-linux-gnu
- host: ubuntu-latest
target: aarch64-unknown-linux-gnu
- host: ubuntu-latest
target: x86_64-unknown-linux-musl
- host: macos-latest
target: aarch64-apple-darwin
- host: macos-latest
target: x86_64-apple-darwin
runs-on: ${{ matrix.settings.host }}
name: build / ${{ matrix.settings.host }} / ${{ matrix.settings.target }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
targets: ${{ matrix.settings.target }}
- uses: Swatinem/[email protected]
with:
key: build_${{ matrix.settings.host }}_${{ matrix.settings.target }}
- run: cargo check --all --bins --examples --tests
- run: cargo build