Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Merge pull request #51 from toposware/bump-version #20

Merge pull request #51 from toposware/bump-version

Merge pull request #51 from toposware/bump-version #20

Workflow file for this run

name: Coverage
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
codecov:
name: Code coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: |
git config --global url."https://${{ secrets.ROBOT_TOPOSWARE_PRIV_REPOS_TOKEN }}@github.com/".insteadOf "https://github.com/"
- name: Install Protoc
uses: arduino/setup-protoc@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/[email protected]
with:
args: "--engine llvm --workspace --release"
timeout: 600
- name: Upload coverage to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true