Skip to content

Commit

Permalink
Fix broken style checks in Actions
Browse files Browse the repository at this point in the history
Forgot to update the Makefile rules used.
  • Loading branch information
leouieda committed Mar 12, 2024
1 parent 7d6c0ed commit 5f73e4e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
Expand All @@ -36,7 +36,7 @@ jobs:
run: python -m pip freeze

- name: Check code format
run: make black-check isort-check
run: make check-format

style:
runs-on: ubuntu-latest
Expand All @@ -49,7 +49,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.11"

- name: Install requirements
run: python -m pip install -r env/requirements-style.txt
Expand All @@ -58,4 +58,4 @@ jobs:
run: python -m pip freeze

- name: Check code style
run: make flake8
run: make check-style

0 comments on commit 5f73e4e

Please sign in to comment.