-
-
Notifications
You must be signed in to change notification settings - Fork 0
91 lines (71 loc) · 2.17 KB
/
tests.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
87
88
89
90
91
on:
push:
name: Tests
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
fmt:
name: Code formatters
runs-on: ubuntu-latest
steps:
- name: Install Prettier
run: npm install -g prettier
- name: Checkout
uses: actions/checkout@v4
- name: Run cargo fmt
run: cargo fmt --check
- name: Run Prettier
run: prettier --check "**/*.{md,json,prettierrc}"
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run cargo clippy
run: cargo clippy --locked
tests:
name: cargo test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y zsh fish
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run tests
env:
RUST_BACKTRACE: 1
run: cargo test --locked -- --nocapture
audit:
name: Check security advisory database
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run cargo-audit
run: |
gh release download --repo rustsec/rustsec --pattern 'cargo-audit-x86_64-unknown-linux-musl-*.tgz'
tar -xvzf cargo-audit-x86_64-unknown-linux-musl-*.tgz
cp cargo-audit-x86_64-unknown-linux-musl-*/cargo-audit .
./cargo-audit audit
coverage:
name: Code coverage
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y zsh fish
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Run cargo-tarpaulin
run: |
gh release download --repo xd009642/tarpaulin --pattern 'cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz'
tar -xvzf cargo-tarpaulin-x86_64-unknown-linux-musl.tar.gz
./cargo-tarpaulin --follow-exec --engine llvm --skip-clean --coveralls ${{ secrets.COVERALLS_TOKEN }}