Skip to content

Commit

Permalink
ci: add ruff check build
Browse files Browse the repository at this point in the history
Update pylint.yml
  • Loading branch information
IndexSeek committed Oct 5, 2024
1 parent 5bd95a5 commit 627e319
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Ruff Check

on: [push, pull_request]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Analysing the code with pylint
run: |
ruff check

0 comments on commit 627e319

Please sign in to comment.