From c329dbda850bede592c157fe81ef0510674220e1 Mon Sep 17 00:00:00 2001 From: Andrew Alexander Date: Sat, 15 Mar 2025 13:17:09 -0400 Subject: [PATCH] comment out tj-actions/changed-files --- .github/workflows/python-ci.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/python-ci.yml b/.github/workflows/python-ci.yml index 97662c86..6b759690 100644 --- a/.github/workflows/python-ci.yml +++ b/.github/workflows/python-ci.yml @@ -37,19 +37,19 @@ jobs: run: | poetry install - - name: Get all doc files that have changed - id: changed_docs - uses: tj-actions/changed-files@v41 - with: - files: | - docs + #- name: Get all doc files that have changed + #id: changed_docs + #uses: tj-actions/changed-files@v41 + #with: + #files: | + #docs - - name: Build docs - if: steps.changed_docs.outputs.any_changed == 'true' && startsWith(matrix.os, 'ubuntu') && startsWith(matrix.python, '3.10') - working-directory: docs - run: | - poetry run pip install -r requirements.txt - poetry run make html + #- name: Build docs + #if: steps.changed_docs.outputs.any_changed == 'true' && startsWith(matrix.os, 'ubuntu') && startsWith(matrix.python, '3.10') + #working-directory: docs + #run: | + #poetry run pip install -r requirements.txt + #poetry run make html - name: Lint with flake8 if: startsWith(matrix.os, 'ubuntu')