Skip to content

Main

Main #327

Workflow file for this run

name: Main
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
push:
permissions:
actions: write
contents: read
jobs:
test:
name: Test
runs-on: ubuntu-latest-16-cores
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
- name: Checkout repo
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: cargo build
run: cargo build --workspace --verbose
- name: cargo test
run: cargo llvm-cov --all-features --workspace --lcov --output-path target/lcov.info
- uses: qltysh/qlty-action/coverage@main
with:
coverage-token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
files: target/lcov.info