mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
44 lines
1 KiB
YAML
44 lines
1 KiB
YAML
# Run cargo-tarpaulin and upload to codecov.io
|
|
|
|
name: Code Coverage
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 16 * * *' # 0:00 am Beijing Time
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
coverage:
|
|
name: Code Coverage
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: true # Pull submodules for `cargo coverage`
|
|
|
|
- name: Install toolchain
|
|
run: rustup show
|
|
|
|
- name: Install cargo-tarpaulin
|
|
uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-tarpaulin
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
key: tarpaulin
|
|
|
|
- name: Run
|
|
run: cargo tarpaulin --skip-clean --engine llvm --out Xml
|
|
|
|
- name: Upload to codecov.io
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
fail_ci_if_error: true
|
|
files: cobertura.xml
|