Skip to content

docs: update research docs and add nav for verification framework #140

docs: update research docs and add nav for verification framework

docs: update research docs and add nav for verification framework #140

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv sync --all-packages
- run: uv run ruff check packages/
- run: uv run ruff format --check packages/
test:
runs-on: ubuntu-latest
strategy:
matrix:
package:
- gds-framework
- gds-viz
- gds-games
- gds-stockflow
- gds-control
- gds-examples
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
- run: uv sync --package ${{ matrix.package }}
- name: Run tests
env:
HYPOTHESIS_PROFILE: ci
run: |
if [ "${{ matrix.package }}" = "gds-examples" ]; then
uv run --package ${{ matrix.package }} pytest packages/gds-examples -v
else
uv run --package ${{ matrix.package }} pytest packages/${{ matrix.package }}/tests -v
fi