name: Rust CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Check, Format, Lint, and Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check code format
run: cargo fmt --all -- --check
- name: Run Clippy linter
run: cargo clippy -- -D warnings
- name: Build project
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose