chore(deps): bump pyclipper from 1.3.0.post5 to 1.3.0.post6 in /package #82
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: test-book | |
on: | |
pull_request: | |
types: [opened, reopened, edited] | |
workflow_dispatch: | |
jobs: | |
test-and-lint: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest] | |
python-version: ["3.11"] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
pip install -e . | |
- name: Check pre-commit | |
run: | | |
pip install pre-commit | |
pre-commit run --all-files || ( git status --short ; git diff ; exit 1 ) | |
- name: Build the book | |
run: jupyter-book build -n . | |
- name: Link Checker | |
uses: lycheeverse/[email protected] | |
continue-on-error: true | |
id: lc | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
args: --verbose --exclude --max-redirects 100 --no-progress _build/html**/*.html |