Skip to content

⬆️ update Rust crate serde to v1.0.214 - autoclosed #261

⬆️ update Rust crate serde to v1.0.214 - autoclosed

⬆️ update Rust crate serde to v1.0.214 - autoclosed #261

Workflow file for this run

name: tarpaulin
on:
pull_request:
paths:
- '**/*.lock'
- '**/*.rs'
- '**/*.toml'
- '**/tarpaulin.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name == 'main' && github.sha || github.ref }}
cancel-in-progress: true
permissions:
pull-requests: write
jobs:
coverage:
name: coverage
runs-on: ubuntu-latest
steps:
- name: cargo
uses: taiki-e/[email protected]
with:
tool: cargo-tarpaulin
- name: python
uses: actions/[email protected]
with:
python-version: 3.11
- name: checkout
uses: actions/[email protected]
with:
ref: ${{ github.head_ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: requirements
run: echo pycobertura >> requirements.txt
- name: dependencies
uses: py-actions/[email protected]
- name: tarpaulin
run: |
cargo tarpaulin \
&& echo '```' >> message.txt \
&& pycobertura show cobertura.xml >> message.txt \
&& echo '```' >> message.txt
- name: comment
uses: thollander/[email protected]
with:
comment_tag: tarpaulin
filePath: message.txt