-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (49 loc) · 1.13 KB
/
ci.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
name: CI
on:
push:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
pull_request:
branches:
- 'main'
- 'patch/**'
- 'minor/**'
- 'major/**'
- 'feature/**'
- 'fix/**'
- 'hotfix/**'
- 'renovate/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --release --verbose
- name: rust-clippy-check
uses: actions-rs/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
args: '-- --test-threads 1'
- name: Upload to codecov.io
uses: codecov/[email protected]
with:
token: ${{secrets.CODECOV_TOKEN}}
- name: Archive code coverage results
uses: actions/upload-artifact@v1
with:
name: code-coverage-report
path: cobertura.xml