docs: update research docs and add nav for verification framework #140
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |