Skip to content

Refresh synthetic study workflow notebooks #3

Refresh synthetic study workflow notebooks

Refresh synthetic study workflow notebooks #3

Workflow file for this run

name: Test and lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test-and-lint:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Install uv and Python
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Lint
run: uv run poe ci_check
- name: Test
run: uv run poe test