Skip to content

WIP

WIP #3

Workflow file for this run

name: Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:latest
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@v4
- name: Test and Generate Coverage
run: cargo tarpaulin --verbose --timeout 120 --coveralls ${{secrets.COVERALLS_TOKEN}}