Skip to content

DOC: Add interactive notebooks to pages in the "Usage Examples" section #85

DOC: Add interactive notebooks to pages in the "Usage Examples" section

DOC: Add interactive notebooks to pages in the "Usage Examples" section #85

Workflow file for this run

name: Style checks
on:
push:
branches:
- v1.**
pull_request:
branches:
- main
- v1.**
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
format:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install --upgrade pip
pip install pre-commit
pip list
- name: Lint
run: pre-commit run --all-files --show-diff-on-failure --color always