Skip to content

Commit

Permalink
Merge pull request #20 from Ostorlab/switch_to_ruff_linter_and_formatter
Browse files Browse the repository at this point in the history
Feat: Use Ruff as a linter and formatter
  • Loading branch information
3asm authored Jan 19, 2024
2 parents 52ab62a + 115c472 commit e183b37
Show file tree
Hide file tree
Showing 7 changed files with 62 additions and 494 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
50 changes: 0 additions & 50 deletions .github/workflows/pylint.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/typing_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Static Types Checker.

on:
pull_request:
branches: [ "*" ]
push:
branches: [ "main" ]
jobs:
mypy:
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 }}
cache: 'pip'
cache-dependency-path: |
**/requirement.txt
**/test-requirement.txt
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r requirement.txt
python -m pip install -r tests/test-requirement.txt
- name: Running static types checker.
run: |
mypy
Loading

0 comments on commit e183b37

Please sign in to comment.