-
Notifications
You must be signed in to change notification settings - Fork 4
62 lines (50 loc) · 1.39 KB
/
push_pull.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
name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
rust: [stable, beta, nightly]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
lfs: true
- name: Install Rust toolchain
run: |
rustup update ${{ matrix.rust }}
rustup default ${{ matrix.rust }}
rustup component add clippy
- name: Generate Cargo lockfile
run: cargo generate-lockfile --verbose
- name: Restore Cargo cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: cargo-${{ matrix.rust }}-${{ runner.os }}-${{ hashFiles('**/Cargo.lock', '.github/workflows/*') }}
- name: Clippy
run: cargo clippy --verbose --all-targets --all-features -- -D clippy::all
- name: Build
run: cargo build --verbose --all-targets
- name: Find
run: find .
if: ${{ matrix.os == 'ubuntu-latest' }}
- name: Run tests
run: cargo test --all-targets --verbose
- name: Run doc tests
run: cargo test --doc --verbose
format:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check format
run: cargo fmt --verbose -- --check --verbose