Skip to content
This repository has been archived by the owner on Oct 9, 2024. It is now read-only.

Commit

Permalink
fix: ci ruff linter
Browse files Browse the repository at this point in the history
  • Loading branch information
artem-burashnikov committed Nov 6, 2023
1 parent 3c02c64 commit 34911d3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: CI
on: [push, pull_request]

jobs:
test:
ci:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -41,7 +41,9 @@ jobs:
python -m poetry run mypy --strict $(git ls-files '*.py')
- name: Ruff linter
uses: chartboost/ruff-action@v1
run: |
python -m poetry run ruff check $(git ls-files '*.py')
python -m poetry run ruff check --select=I $(git ls-files '*.py')
- name: Run tests
run: |
Expand Down

0 comments on commit 34911d3

Please sign in to comment.