-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (39 loc) · 1.11 KB
/
codecov.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
on:
push:
branches:
- main
name: Code coverage check
jobs:
coverage:
name: Code Coverage
# https://github.com/actions/virtual-environments
runs-on: ubuntu-20.04
strategy:
matrix:
rust-version: [1.79.0]
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust-version }}
target: wasm32-unknown-unknown
override: true
- name: Install tarpaulin
uses: actions-rs/cargo@v1
with:
command: install
args: cargo-tarpaulin --version 0.30.0
- run: make build
- name: Run code coverage check with tarpaulin
uses: actions-rs/cargo@v1
with:
command: tarpaulin
args: --all-features --workspace --timeout 120 --out Xml --exclude soroban-token-contract
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./cobertura.xml