Skip to content

Add mypy nbs check #189

Add mypy nbs check

Add mypy nbs check #189

Workflow file for this run

name: CI
on: [push]
# Automatically stop old builds on the same branch/PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -el {0}
jobs:
pre-commit-checks:
name: Pre-commit Checks
timeout-minutes: 30
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up pixi
uses: prefix-dev/[email protected]
with:
environments: default lint
- name: pre-commit
run: pixi run pre-commit-run --color=always --show-diff-on-failure
mypy-example-nbs:
name: Check notebooks mypy
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- name: Set up pixi
uses: prefix-dev/[email protected]
- name: Run mypy
run: |
jupyter nbconvert --to script docs/examples/*.ipynb
for file in docs/examples/*.txt; do mv -- "$file" "${file%.txt}.py"; done
mypy docs/examples/*.py
unit-tests:
name: Unit Tests
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
env: ["py310", "py311", "py312"]
steps:
- name: Checkout branch
uses: actions/checkout@v4
- name: Set up pixi
uses: prefix-dev/[email protected]
with:
environments: ${{ matrix.env }}
- name: Install repository
run: |
pixi run -e ${{ matrix.env }} postinstall
pixi run -e ${{ matrix.env }} coverage
- name: Generate code coverage report
if: matrix.python-version == '3.12'
uses: codecov/[email protected]
with:
file: ./coverage.xml
- name: Upload coverage reports to Codecov
if: matrix.env == 'py312'
uses: codecov/[email protected]
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.xml