Skip to content

Commit

Permalink
updated read the docs yaml to use mkdocs instead of sphinx, and code-…
Browse files Browse the repository at this point in the history
…quality-pr github action to use pre-commit<4
  • Loading branch information
Oufattole committed Oct 22, 2024
1 parent 65c2d9e commit 53d136e
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/code-quality-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,15 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Python
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Install packages
run: |
pip install .[dev]
- name: Find modified files
id: file_changes
uses: trilom/file-changes-action@v1.2.4
Expand All @@ -35,4 +39,4 @@ jobs:
- name: Run pre-commits
uses: pre-commit/action@v3.0.1
with:
extra_args: --files ${{ steps.file_changes.outputs.files}}
extra_args: --all-files

0 comments on commit 53d136e

Please sign in to comment.