Skip to content

Commit

Permalink
Fixed wrong specification of python-version in pylint test.
Browse files Browse the repository at this point in the history
  • Loading branch information
johannesbulin authored Nov 11, 2024
1 parent 5084cdd commit dd04fc5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,15 @@ on:

jobs:
pylint:
strategy:
matrix:
python-version: ['3.11']

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Install pylint
run: |
Expand Down

0 comments on commit dd04fc5

Please sign in to comment.