-
Notifications
You must be signed in to change notification settings - Fork 0
83 lines (72 loc) · 1.9 KB
/
CI_client.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# NOTE: The `cargo` commands in this Github Action require the `--manifest
# client/Cargo.toml' arg to make them work in the `client/` subdirectory
name: CI - client
on:
pull_request:
paths:
- 'client/**'
push:
paths:
- 'client/**'
schedule:
- cron: '0 0 * * *' # Run every day at 00:00 UTC.
env:
RUST_BACKTRACE: full # Shows more info when a test fails.
jobs:
basic_checks:
name: Basic checks (cargo ${{ matrix.cmd }})
runs-on: ubuntu-latest
strategy:
matrix:
cmd:
- fmt
- doc
include:
- cmd: fmt
args: --manifest-path client/Cargo.toml -- --check
- cmd: doc
args: --manifest-path client/Cargo.toml --no-deps
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt
- name: cargo ${{ matrix.cmd }}
uses: actions-rs/cargo@v1
with:
command: ${{ matrix.cmd }}
args: ${{ matrix.args }}
test:
name: Test ${{ matrix.rust }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
rust:
- stable
- beta
- nightly
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
# Print the test output, for debugging reasons.
args: --manifest-path client/Cargo.toml -- --nocapture