-
Notifications
You must be signed in to change notification settings - Fork 216
86 lines (66 loc) · 2.11 KB
/
rust.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Rust
on:
pull_request:
jobs:
build-stable:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
defaults:
run:
working-directory: ./safetensors
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt, clippy, llvm-tools-preview
override: true
- uses: Swatinem/rust-cache@v2
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Install cargo-llvm-cov for Ubuntu
if: matrix.os == 'ubuntu-latest'
run: cargo install cargo-llvm-cov
- name: Build
run: cargo build --all-targets --verbose
- name: Lint with Clippy
run: cargo clippy --all-targets -- -D warnings
- name: Run Tests
run: cargo test --verbose
- name: Run No-STD Tests
run: cargo test --no-default-features --features alloc --verbose
- name: Run Audit
# RUSTSEC-2021-0145 is criterion so only within benchmarks
run: cargo audit -D warnings --ignore RUSTSEC-2021-0145
- name: Coverage report
if: matrix.os == 'ubuntu-latest'
run: cargo llvm-cov --release --lcov --output-path lcov.info
# - name: Upload to codecov.io
# if: matrix.os == 'ubuntu-latest'
# uses: codecov/codecov-action@v3
# with:
# token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
# working-directory: ./safetensors
# fail_ci_if_error: true
build-msrv:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./safetensors
env:
MSRV: "1.74"
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ env.MSRV }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ env.MSRV }}
override: true
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build --all-targets --verbose
- name: Run Tests
run: cargo test --verbose