Skip to content

pkg: convert setup.py config to pyproject.toml #512

pkg: convert setup.py config to pyproject.toml

pkg: convert setup.py config to pyproject.toml #512

Workflow file for this run

name: Check Docs
on:
pull_request:
branches: [master]
push:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
jobs:
checkdocs:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e . -r tests/requirements.txt
- name: Check Docs
run: python setup.py checkdocs