Skip to content

Commit

Permalink
github: Fix ruff job setup
Browse files Browse the repository at this point in the history
Signed-off-by: Povilas Kanapickas <povilas@radix.lt>
  • Loading branch information
p12tic committed Mar 8, 2024
1 parent 23fe9e7 commit b65d4a3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,12 @@ on:
jobs:
lint-ruff:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
name: Set up Python ${{ matrix.python-version }}
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
python-version: "3.11"
- name: Analysing the code with ruff
run: |
pip install -r test-requirements.txt
Expand Down

0 comments on commit b65d4a3

Please sign in to comment.