-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (36 loc) · 1.03 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
name: test
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
rust: [stable, 1.63, nightly]
runs-on: ${{ matrix.os }}
steps:
- name: Install dependencies
run: sudo apt-get install libwebp-dev libwebpdemux2 libwebpmux3
if: runner.os == 'linux'
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
components: rustfmt, clippy
- name: Cache
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-${{ hashFiles('**/Cargo.toml') }}
- name: Run fmt
run: cargo fmt --check
- name: Run clippy
run: cargo clippy
- name: Run tests
run: cargo test --verbose
- name: Run tests with image feature
run: cargo test --verbose --features image