From 53d136ec767f05768149ffeb55725901591cd95a Mon Sep 17 00:00:00 2001 From: Nassim Oufattole Date: Tue, 22 Oct 2024 14:57:23 -0400 Subject: [PATCH] updated read the docs yaml to use mkdocs instead of sphinx, and code-quality-pr github action to use pre-commit<4 --- .github/workflows/code-quality-pr.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code-quality-pr.yaml b/.github/workflows/code-quality-pr.yaml index 46c9eec..88cd175 100644 --- a/.github/workflows/code-quality-pr.yaml +++ b/.github/workflows/code-quality-pr.yaml @@ -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 @@ -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