-
Notifications
You must be signed in to change notification settings - Fork 1
68 lines (68 loc) · 2.04 KB
/
build_and_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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Build and test
on:
pull_request:
branches: [main, staging]
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
env: [ubuntu-64, macos-64, windows-64]
include:
- env: ubuntu-64
os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- env: macos-64
os: macos-latest
toolchain: stable-x86_64-apple-darwin
- env: windows-64
os: windows-latest
toolchain: stable-x86_64-pc-windows-msvc
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup toolchain ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Setup Cargo cache
uses: Swatinem/rust-cache@v2
- name: Build using ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
test:
name: Test
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
env: [ubuntu-64, macos-64, windows-64]
include:
- env: ubuntu-64
os: ubuntu-latest
toolchain: stable-x86_64-unknown-linux-gnu
- env: macos-64
os: macos-latest
toolchain: stable-x86_64-apple-darwin
- env: windows-64
os: windows-latest
toolchain: stable-x86_64-pc-windows-msvc
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Rust toolchain ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Setup Cargo cache
uses: Swatinem/rust-cache@v2
- name: Test using ${{ matrix.toolchain }} for ${{ matrix.os }}
uses: actions-rs/cargo@v1
with:
command: test
args: --release --all-features