Skip to content

Merge pull request #394 from Phoenix-Protocol-Group/soroban-sdk-upgra… #212

Merge pull request #394 from Phoenix-Protocol-Group/soroban-sdk-upgra…

Merge pull request #394 from Phoenix-Protocol-Group/soroban-sdk-upgra… #212

Workflow file for this run

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