Skip to content

[codex] Operationalize coven-github hosted MVP #7

[codex] Operationalize coven-github hosted MVP

[codex] Operationalize coven-github hosted MVP #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: cargo check + clippy + test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- name: cargo check
run: cargo check --all-targets
- name: clippy
run: cargo clippy --all-targets -- -D warnings
- name: test
run: cargo test --all