-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (39 loc) · 1010 Bytes
/
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
46
47
48
name: CI
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
#RUST_LOG: error
jobs:
build_and_test:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- name: Install dependency libhwloc-dev
run: |
sudo apt-get update
sudo apt-get install -y libhwloc-dev libudev-dev
- name: setup toolchain
uses: hecrj/setup-rust-action@v1
with:
rust-version: stable
components: rustfmt, clippy
- name: Build project
uses: actions-rs/cargo@v1
with:
command: build
args: --release --all-features
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
- name: Run cargo clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --all --tests -- -D warnings