-
Notifications
You must be signed in to change notification settings - Fork 9
50 lines (48 loc) · 1.23 KB
/
ci.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
name: CI
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
jobs:
test:
strategy:
matrix:
rust:
- stable
- 1.70.0
os:
- ubuntu-20.04
- windows-latest
# The dir feature requires a POSIX system (not Windows).
include:
- os: ubuntu-20.04
features: "--features dir"
- rust: stable
extra_components: rustfmt
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ matrix.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
override: true
components: ${{ matrix.extra_components }}
- name: Test
run: cargo test ${{ matrix.features }} --all-targets
- name: Check formatting
if: matrix.rust == 'stable'
run: cargo fmt -- --check
- name: Clippy
if: matrix.rust == 'stable'
run: cargo clippy -- -D warnings