Skip to content

Expand README feature overview #1

Expand README feature overview

Expand README feature overview #1

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
rust:
name: Rust
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install frontend deps
working-directory: frontend
run: npm ci
- name: Build frontend
working-directory: frontend
run: npm run build
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt, clippy
- name: Check formatting
run: cargo fmt --check
- name: Lint
run: cargo clippy --all-targets -- -D warnings
- name: Test
run: cargo test
- name: Build release
run: cargo build --release