Skip to content

Axum overhaul + errors runtime + back compat #16

Axum overhaul + errors runtime + back compat

Axum overhaul + errors runtime + back compat #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Typecheck
run: pnpm typecheck
format-lint-biome:
name: Format & Lint (Biome)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
cache: "pnpm"
- name: Install dependencies
run: pnpm i
- name: Run Biome
run: pnpm exec biome ci .
format-rust:
name: Format (Cargo)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Check formatting
run: cargo fmt --check
clippy:
name: Clippy
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Run Clippy
uses: actions-rs-plus/clippy-check@v2
with:
# no --locked as this is a library and we want to use latest dependencies in CI
args: --workspace --all-features