⬆️ update Rust crate anyhow to v1.0.89 - autoclosed #235
Workflow file for this run
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
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 |