Skip to content

Commit

Permalink
Merge pull request #120 from Ostorlab/switch_to_ruff_linter_and_forma…
Browse files Browse the repository at this point in the history
…tter

Feat: Use Ruff as a linter and formatter
  • Loading branch information
3asm authored Jan 23, 2024
2 parents 37386b4 + 9ea2d7c commit 7781bc0
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 483 deletions.
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: [ "master" ]
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
43 changes: 0 additions & 43 deletions .github/workflows/pylint.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
branches: [ "*" ]
push:
branches: [ master ]
branches: [ "master" ]

jobs:
build:
Expand All @@ -21,7 +21,7 @@ jobs:
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r tools/requirements.txt
python -m pip install -r requirements.txt
python -m pip install -r tests/test-requirements.txt
- name: Running tests with pytest.
run: |
Expand Down
34 changes: 34 additions & 0 deletions .github/workflows/typing_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Static Types Checker.

on:
pull_request:
branches: [ "*" ]
push:
branches: [ "master" ]
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-requirements.txt
**/typing_requirements.txt
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r tests/test-requirements.txt
python -m pip install -r typing_requirements.txt
- name: Running static types checker.
run: |
mypy
Loading

0 comments on commit 7781bc0

Please sign in to comment.