Skip to content

Commit

Permalink
Create linters.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Snuffy2 committed Dec 17, 2024
1 parent 2354d14 commit bd2b071
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Linters

on:
pull_request:
push:
branches: [main]
workflow_dispatch:

jobs:
setup_linters:
name: Setup Linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Cache pip dependencies
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install requirements
run: pip install -r requirements.txt
pre-commit:
name: pre-commit
needs: setup_linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run pre-commit
uses: pre-commit/action@v3.0.1
- name: Run pre-commit.ci
uses: pre-commit-ci/lite-action@v1.1.0
if: always()
mypy:
name: mypy
needs: setup_linters
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run mypy
run: mypy "./custom_components/opnsense/" --install-types --non-interactive --config-file pyproject.toml

0 comments on commit bd2b071

Please sign in to comment.