Merge pull request #311 from Phoenix-Protocol-Group/ignore-stake-rewa… #173
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.78.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 phoenix-stake-rewards phoenix-pool-stable | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./cobertura.xml |