black #109
Workflow file for this run
This file contains 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: Tests jupyter guides | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'docs/guides/**' | |
- 'client/purplecaffeine/**' | |
jobs: | |
guides_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
matrix: | |
python-version: [3.9, '3.10'] | |
folder: ["client"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install tox | |
- name: Run jupyter guides check | |
env: | |
FOLDER: ${{ matrix.folder }} | |
run: tox -ejupyter |