-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (41 loc) · 1.09 KB
/
cargo_test.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
name: cargo-test
on:
pull_request:
push:
branches: [ master ]
jobs:
cargo-test:
name: Run test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
build: [ stable, beta, nightly, macos, windows ]
include:
- build: stable
os: ubuntu-latest
rust: stable
- build: beta
os: ubuntu-latest
rust: beta
- build: nightly
os: ubuntu-latest
rust: nightly
- build: macos
os: macos-latest
rust: stable
- build: windows
os: windows-latest
rust: stable
steps:
- uses: actions/checkout@master
- name: Install Rust
run: |
rustup set profile minimal
rustup component remove --toolchain=${{ matrix.rust }} rust-docs || echo "already removed"
rustup update --no-self-update ${{ matrix.rust }}
rustup default ${{ matrix.rust }}
rustup -V
rustc -Vv
cargo -V
- name: Build and run tests
run: cargo test