-
Notifications
You must be signed in to change notification settings - Fork 15
45 lines (33 loc) · 1.03 KB
/
test.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
name: Tests
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get -y install libssl-dev libsystemd-dev libsensors-dev
- name: Cache cargo dependencies
id: cache-cargo
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
- name: Formatting
run: cargo fmt --check --all
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
run: cargo build --all-features --all-targets
- name: Run tests
run: cargo test --all-features
- if: steps.cache-cargo.outputs.cache-hit != 'true'
name: Clean cargo dependencies
run: cargo clean -p minmon