From 0f8011ad6c5370b4b1eb23723ca356248198e976 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Sun, 29 Sep 2024 23:57:51 +0200 Subject: [PATCH] FIXUP: remove check-doc from the CI, it's part of the main workflow --- .github/workflows/check-doc.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/check-doc.yml diff --git a/.github/workflows/check-doc.yml b/.github/workflows/check-doc.yml deleted file mode 100644 index 06dcf376..00000000 --- a/.github/workflows/check-doc.yml +++ /dev/null @@ -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