Skip to content

Commit

Permalink
Sync Python lint workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Dec 13, 2024
1 parent 274dce5 commit 1d6773a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v4

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

- name: Install dependencies
run: |
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ on:
jobs:
unit-tests:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.12']
steps:
- uses: actions/checkout@v4

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

- name: Install dependencies
run: |
Expand Down

0 comments on commit 1d6773a

Please sign in to comment.