Skip to content

Format code with rustfmt for consistency #10

Format code with rustfmt for consistency

Format code with rustfmt for consistency #10

Workflow file for this run

name: Rust CI (Light)
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Check compilation
run: cargo check
- name: Build release binary
run: cargo build --release
- name: Clippy (non-blocking)
run: cargo clippy --all-targets || true