-
-
Notifications
You must be signed in to change notification settings - Fork 10
46 lines (42 loc) · 1.08 KB
/
rust-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
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
cargo-check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# - name: Install Rust
# uses: oxidecomputer/actions-rs_toolchain@oxide/master
- name: Cache rust artifacts
uses: Swatinem/rust-cache@v2
with:
shared-key: cargo-check
- name: Run cargo check
run: cargo check --color always --all --all-targets
cargo-test:
name: Test - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v3
# - name: Install Rust
# uses: oxidecomputer/actions-rs_toolchain@oxide/master
# with:
# profile: minimal
- name: Cache rust artifacts
uses: Swatinem/rust-cache@v2
with:
shared-key: cargo-test-${{ matrix.os }}
- name: Run cargo test
run: cargo test