* Update Cargo.toml * chore: fix clippy * chore: bump actions * chore: fix clippy * chore: update target name --------- Co-authored-by: Luis Moreno <morenol@users.noreply.github.com>
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
name: Coverage
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, development ]
|
|
pull_request:
|
|
branches: [ development ]
|
|
|
|
jobs:
|
|
coverage:
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
TZ: "/usr/share/zoneinfo/your/location"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Cache .cargo
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: |
|
|
~/.cargo
|
|
./target
|
|
key: ${{ runner.os }}-coverage-cargo-${{ hashFiles('**/Cargo.toml') }}
|
|
restore-keys: ${{ runner.os }}-coverage-cargo-${{ hashFiles('**/Cargo.toml') }}
|
|
- name: Install Rust toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: nightly
|
|
profile: minimal
|
|
default: true
|
|
- name: Install cargo-tarpaulin
|
|
uses: actions-rs/install@v0.1
|
|
with:
|
|
crate: cargo-tarpaulin
|
|
version: latest
|
|
use-tool-cache: true
|
|
- name: Run cargo-tarpaulin
|
|
uses: actions-rs/cargo@v1
|
|
with:
|
|
command: tarpaulin
|
|
args: --out Lcov --all-features -- --test-threads 1
|
|
- name: Upload to codecov.io
|
|
uses: codecov/codecov-action@v2
|
|
with:
|
|
fail_ci_if_error: false
|