FIXUP: remove check-doc from the CI, it's part of the main workflow

This commit is contained in:
Alexis Métaireau 2024-09-29 23:57:51 +02:00
parent 22198e889e
commit 0f8011ad6c
No known key found for this signature in database
GPG key ID: 1C21B876828E5FF2

View file

@ -1,26 +0,0 @@
name: Check doc
on:
push:
branches: [ 'master', 'stable-*' ]
pull_request:
branches: [ 'master', 'stable-*' ]
jobs:
test_doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
cache-dependency-path: '**/pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Check we can generate documentation
run: tox -e docs