Skip to content

Commit

Permalink
Run format check on multiple Python versions (#1655)
Browse files Browse the repository at this point in the history
* Run format checks on Python 3.7 and 3.12
  • Loading branch information
guarin committed Sep 25, 2024
1 parent ca4d467 commit 34aa499
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test_code_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
test:
name: Check
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.7", "3.12"]
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand All @@ -22,7 +25,7 @@ jobs:
- name: Set Up Python
uses: actions/setup-python@v5
with:
python-version: "3.7"
python-version: ${{ matrix.python }}
- name: Set Up Environment
run: |
make install-uv reset-venv
Expand Down

0 comments on commit 34aa499

Please sign in to comment.