Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
Loading