Skip to content

docs(README): Updated QA in line with community feedback <3 #477

docs(README): Updated QA in line with community feedback <3

docs(README): Updated QA in line with community feedback <3 #477

Workflow file for this run

name: CI
on:
pull_request:
merge_group:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-test
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-Dwarnings"
TAVILY_API_KEY: noop
KWAAK_OPENAI_API_KEY: noop
GITHUB_TOKEN: noop
jobs:
test:
name: Test & lint
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- 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-nextest
# Required for copypasta builds on linux
- name: Install libxcb
run: sudo apt install libxcb1-dev libxcb-shape0-dev libxcb-xfixes0-dev
- name: Check typos
uses: crate-ci/typos@master
- name: "Rustfmt"
run: cargo fmt --all --check
# - name: Lint dependencies
# uses: EmbarkStudios/cargo-deny-action@v2
- name: clippy
run: cargo clippy --all-targets --all-features
- name: "Test"
run: cargo nextest run --all-features -j 2