-
-
Notifications
You must be signed in to change notification settings - Fork 55
104 lines (101 loc) · 2.86 KB
/
Copy pathtest.yml
File metadata and controls
104 lines (101 loc) · 2.86 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- "**"
env:
CARGO_TERM_COLOR: always
jobs:
test:
timeout-minutes: 20
strategy:
matrix:
rust_version:
- stable
- "1.90.0" # MSRV
os:
- ubuntu-latest
- windows-latest
- macos-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust_version }}
- name: Add cargo-all-features
run: cargo install cargo-all-features
- name: Add rustfmt
run: rustup component add rustfmt
- name: Add clippy
run: rustup component add clippy
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ runner.os }}-cargo
- uses: taiki-e/install-action@nextest
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy
- name: Build permutations
run: cargo build-all-features
- name: Run tests
run: cargo nextest run --all-features
- name: Run doc tests
run: cargo test --doc --features lz4
codecov:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@nightly
with:
components: llvm-tools-preview
- name: Set up cargo cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: ${{ runner.os }}-cargo
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: taiki-e/install-action@nextest
- name: Run tests
run: cargo llvm-cov --no-report nextest --all-features
- name: Run doc tests
run: cargo llvm-cov --no-report --doc --features lz4
- name: Create code coverage report
run: cargo llvm-cov report --doctests --lcov --output-path lcov.info
- name: Upload coverage data to codecov
uses: codecov/codecov-action@v7
with:
files: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
cross:
timeout-minutes: 15
name: cross
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
- aarch64-unknown-linux-musl
- i686-unknown-linux-gnu
- powerpc64-unknown-linux-gnu
- riscv64gc-unknown-linux-gnu
# - aarch64-linux-android
# - i686-linux-android
# - x86_64-linux-android
#- mips64-unknown-linux-gnuabi64
#- x86_64-apple-darwin
#- aarch64-apple-darwin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: cross test
run: |
cargo install cross
cross test -r --features lz4 --target ${{ matrix.target }}