docs(README): Updated QA in line with community feedback <3 #163
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Coverage | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-coverage | |
cancel-in-progress: true | |
env: | |
TAVILY_API_KEY: noop | |
KWAAK_OPENAI_API_KEY: noop | |
KWAAK_GITHUB_TOKEN: noop | |
jobs: | |
test: | |
name: coverage | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Free Disk Space (Ubuntu) | |
uses: jlumbroso/free-disk-space@main | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: dtolnay/rust-toolchain@nightly | |
with: | |
components: llvm-tools-preview | |
- uses: Swatinem/rust-cache@v2 | |
# Required for copypasta builds on linux | |
- name: Install libxcb | |
run: sudo apt install libxcb1-dev libxcb-shape0-dev libxcb-xfixes0-dev | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v3 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install cargo-llvm-cov | |
uses: taiki-e/install-action@v2 | |
with: | |
tool: cargo-llvm-cov,cargo-nextest | |
- name: Generate code coverage | |
run: | | |
cargo +nightly llvm-cov nextest --all-features --lcov --output-path lcov.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@v2 |