Add example notebook #10
Workflow file for this run
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: Python package | |
on: | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Nox | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools | |
python -m pip install "nox==2023.4.22" | |
- name: Run code formatting checks | |
run: | | |
nox -s check_code_formatting-${{ matrix.python-version }} | |
- name: Run static type checking | |
run: | | |
nox -s check_types-${{ matrix.python-version }} | |
- name: Run tests | |
run: | | |
nox -s run_tests-${{ matrix.python-version }} |