Skip to content

Commit

Permalink
Simplify Python lint workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
EtiennePerot committed Sep 30, 2024
1 parent 27d4d39 commit 4b6a569
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/python-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,13 @@ on:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.x"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
python-version: "3.x"
- name: Lint with Ruff
run: |
pip install ruff
Expand Down

0 comments on commit 4b6a569

Please sign in to comment.