-
Notifications
You must be signed in to change notification settings - Fork 14
46 lines (41 loc) · 1.2 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
name: Rust
on:
push:
branches: [master]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- name: Build
run: cargo build --all-features
- name: Run tests
run: cargo test --all-features
- name: Run clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libdbus-1-dev
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@v2
with:
tool: cargo-llvm-cov
- name: Run tests with coverage
run: cargo llvm-cov test --all-features --codecov --output-path codecov-report.json
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v4.1.0
with:
fail_ci_if_error: true
files: codecov-report.json
token: ${{ secrets.CODECOV_TOKEN }}