Skip to content

Commit

Permalink
updated pre-commit to install from python version 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Oufattole committed Oct 22, 2024
1 parent 41d539c commit 48902f9
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/code-quality-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,21 @@ jobs:
code-quality:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.12"]

steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up Python
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ matrix.python-version }}

- name: Install packages
run: |
pip install .[dev]
- name: Run pre-commits
uses: pre-commit/action@v3.0.1

0 comments on commit 48902f9

Please sign in to comment.