Skip to content

Commit

Permalink
Merge pull request #557 from Ostorlab/feat_switch_to_ruff_linter_and_…
Browse files Browse the repository at this point in the history
…formatter

Feat: Use Ruff as a linter and formatter
  • Loading branch information
3asm authored Jan 23, 2024
2 parents dcea6dc + e80c0fe commit 42cc865
Show file tree
Hide file tree
Showing 43 changed files with 149 additions and 501 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: [ "main" ]
jobs:
ruff:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.9", "3.10" ]
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
51 changes: 0 additions & 51 deletions .github/workflows/python-package-lint.yml

This file was deleted.

37 changes: 37 additions & 0 deletions .github/workflows/typing_checker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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.9", "3.10" ]
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: |
**/typing_requirements.txt
- name: Install dependencies.
run: |
python -m pip install --upgrade pip
python -m pip install -r typing_requirements.txt
python -m pip install -e .
- name: Running static types checker.
run: |
mypy src/ostorlab/agent/schema
mypy src/ostorlab/agent/kb
mypy src/ostorlab/agent/message
mypy src/ostorlab/utils
mypy src/ostorlab/apis/runners
mypy src/ostorlab/agent/mixins/agent_report_vulnerability_mixin.py
mypy src/ostorlab/assets
Loading

0 comments on commit 42cc865

Please sign in to comment.