Skip to content

ci: Added pyupgrade to ruff #614

ci: Added pyupgrade to ruff

ci: Added pyupgrade to ruff #614

Workflow file for this run

name: Tests
on:
push:
branches: [main, dev]
pull_request:
branches: [main, dev]
jobs:
pytest-and-notebooks:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: "${{ github.workflow }} - ${{ matrix.python-version}} - ${{ matrix.os }} @ ${{ github.ref }}"
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
# Assumes the package have the tests extra
pip install ".[tests]"
pip install -r ./tests/requirements.txt
- name: Run and write pytest
shell: bash
run: |
set -o pipefail
pytest
- name: Install dependencies for notebooks
shell: bash
run: |
# Assumes the package have the tutorials extra
pip install ".[tutorials]"
pip install -r ./docs/tutorials/requirements.txt
- name: Convert and run notebooks
shell: bash
run: |
jupyter nbconvert --to python ./docs/tutorials/*.ipynb
for f in docs/tutorials/*.py; do ipython "$f"; done