forked from FairgateLabs/BitVMX-CPU
-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (60 loc) · 1.67 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
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
name: 'Test action'
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
test:
if: ${{ !contains(github.event.pull_request.title, '[cov]') }}
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./emulator
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Build project
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
test-with-coverage:
if: contains(github.event.pull_request.title, '[cov]')
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
repository-projects: write
defaults:
run:
working-directory: ./emulator
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Build project
run: cargo build --verbose
- name: Run cargo-tarpaulin
uses: actions-rs/[email protected]
with:
version: '0.15.0'
args: '--out Xml --output-dir resources --no-fail-fast'
- name: Code Coverage Summary Report
uses: irongut/[email protected]
with:
filename: 'resources/cobertura.xml'
badge: true
format: 'markdown'
output: 'both'
- name: Add Coverage PR Comment
uses: marocchino/sticky-pull-request-comment@v2
if: github.event_name == 'pull_request'
with:
recreate: true
path: code-coverage-results.md