-
Notifications
You must be signed in to change notification settings - Fork 43
executable file
·56 lines (53 loc) · 1.34 KB
/
ci-pr.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
name: Tests
on:
pull_request:
concurrency:
group: ci-pr-${{ github.ref }}
cancel-in-progress: true
jobs:
test-full:
name: Full
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Cache Builds
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v4
- name: Compile
run: cargo test --no-run --all-features
- name: Test
run: cargo test --all-features
test-minimal:
name: Min
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]
runs-on: ${{ matrix.os }}
steps:
- name: Install rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Cache Builds
uses: Swatinem/rust-cache@v2
- name: Checkout
uses: actions/checkout@v4
- name: Compile
run: cargo test --no-run --no-default-features
- name: Test
run: cargo test --no-default-features