Skip to content

Commit

Permalink
Use Ruff as a linter and formatter; update all
Browse files Browse the repository at this point in the history
  • Loading branch information
benyissa committed Jan 19, 2024
1 parent a4ce9f9 commit c515fdf
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 476 deletions.
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ Dockerfile
requirements.txt
.github
tests
.pylintrc
ruff.toml
README.md
26 changes: 26 additions & 0 deletions .github/workflows/lint_format_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Lint And Format Checker.

on:
pull_request:
branches: [ "*" ]
push:
branches: [ "main" ]
jobs:
ruff:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.11" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Checking code formatting.
uses: chartboost/ruff-action@v1
with:
args: format --check
- name: Running linter.
uses: chartboost/ruff-action@v1
44 changes: 0 additions & 44 deletions .github/workflows/pylint.yml

This file was deleted.

Loading

0 comments on commit c515fdf

Please sign in to comment.