Skip to content

docs

docs #94

Workflow file for this run

# Continuous Integration workflow for Brain.
# Runs lint and unit tests through `make test` on push and pull requests.
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Test (Python 3.14)
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Install dependencies
run: make deps
- name: Run tests
run: make test integration