Skip to content

The base commit

The base commit #2

Workflow file for this run

name: Run Tests
on:
workflow_dispatch:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'assets/**'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'assets/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.85.0
components: rustfmt, clippy
- uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
- name: Install dependencies
run: uv sync --all-extras
- name: Build applications
run: make build
- name: Check formatting
run: make format-check
- name: Run lints
run: make lint
- name: Run tests
run: make test