Skip to content

chore(deps-dev): bump @swc/cli from 0.3.14 to 0.4.0 #89

chore(deps-dev): bump @swc/cli from 0.3.14 to 0.4.0

chore(deps-dev): bump @swc/cli from 0.3.14 to 0.4.0 #89

Workflow file for this run

name: rust-coverage
on:
push:
branches: ['main', '*']
pull_request:
# The branches below must be a subset of the branches above
branches: ['main']
schedule:
- cron: '50 23 * * *'
jobs:
rust-coverage:
name: Rust coverage
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: llvm-tools-preview
- uses: taiki-e/install-action@cargo-llvm-cov
- name: Collect coverage data (including doctests)
run: |
cargo llvm-cov --lcov --output-path lcov.info --ignore-filename-regex 'init'
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: lcov.info