Skip to content

updates anchor (#595) #1709

updates anchor (#595)

updates anchor (#595) #1709

Workflow file for this run

name: Check
on:
push:
branches:
- main
pull_request:
jobs:
ruff:
name: Ruff
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: pip install ruff
- run: ruff check
- run: ruff format --check
mypy:
name: MyPy
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install mypy
run: pip install mypy==0.950
- name: Run
run: python3 internal/typecheck.py
nbconvert:
name: NbConvert
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install NbConvert
run: pip install jupyter nbconvert
- name: Check notebooks are cleaned
run: |
jupyter nbconvert --clear-output --inplace 11_notebooks/*.ipynb
git diff --quiet && git diff --cached --quiet || exit 1
pytest:
name: Pytest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dev dependencies
run: pip install pytest jupytext pydantic~=1.10
- name: Install the Modal client
run: pip install modal-client
- name: Run
run: pytest -v .