-
Notifications
You must be signed in to change notification settings - Fork 3
54 lines (48 loc) · 1.28 KB
/
run0.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
name: run0 build and unit tests
on: [push, pull_request, create]
jobs:
basic_ci:
if: github.event_name == 'pull_request'
name: Check
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./run0
strategy:
fail-fast: false
matrix:
rust:
- stable
- beta
- nightly
steps:
- name: Code checkout
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install Rust toolchain (${{ matrix.rust }})
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: rustfmt, clippy
- name: Build and install with default features
run: cargo build
- name: Run cargo test
uses: marcopolo/cargo@master
with:
working-directory: ./run0
command: test
- name: Run cargo fmt check
uses: marcopolo/cargo@master
with:
working-directory: ./run0
command: fmt
args: --all -- --check
- name: Run rust lint check
uses: marcopolo/cargo@master
with:
working-directory: ./run0
command: clippy
args: --all-targets --all-features -- -D warnings