name: CI
on:
push:
branches:
pull_request:
branches:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --check
- name: Lint with Clippy
run: cargo clippy -- -D warnings
- name: Run tests
run: cargo test
- name: Build release binary
run: cargo build --release