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

bump to v27.0.0-rc.4 #42

bump to v27.0.0-rc.4

bump to v27.0.0-rc.4 #42

Workflow file for this run

name: Coverage
on:
push:
branches: [ "main" ]
jobs:
coverage:
runs-on: ubuntu-latest
env:
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-build
with:
os: ubuntu-latest
shaderc: false
- uses: taiki-e/install-action@cargo-llvm-cov
- run: cargo llvm-cov --lib --features "python plotters" --lcov --output-path lcov.info
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info
fail_ci_if_error: true