Skip to content

Bump event-listener from 5.4.0 to 5.4.1 #516

Bump event-listener from 5.4.0 to 5.4.1

Bump event-listener from 5.4.0 to 5.4.1 #516

Workflow file for this run

name: coverage
on: [push]
jobs:
test:
name: coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:latest
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Cache cargo
uses: actions/cache@v4
with:
path: ~/.cargo
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-cargo
- name: Cache cargo build
uses: actions/cache@v4
with:
path: target
key: ${{ runner.os }}-stable-coverage-build-target-${{ hashFiles('**/Cargo.lock') }}
restore-keys: ${{ runner.os }}-stable-coverage-build-target-
- name: Generate code coverage
run: |
cargo tarpaulin --all-features --skip-clean --workspace --timeout 120 --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}