Skip to content

chore(board): complete task #12 — batty work wiring (Phase 1 complete!) #3

chore(board): complete task #12 — batty work wiring (Phase 1 complete!)

chore(board): complete task #12 — batty work wiring (Phase 1 complete!) #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings
jobs:
check:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@v2
- name: Format check
run: cargo fmt --check
- name: Clippy
run: cargo clippy --all-targets
- name: Build
run: cargo build
- name: Test
run: cargo test