mirror of
https://github.com/HorlogeSkynet/SgEExt
synced 2025-09-18 12:00:09 +02:00
25 lines
486 B
YAML
25 lines
486 B
YAML
---
|
|
name: Linting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: Run Pylint and Mypy on SgEExt
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
|
|
- uses: actions/setup-python@v6
|
|
with:
|
|
python-version: "3.13"
|
|
|
|
- run: |
|
|
python -m pip install --upgrade pip
|
|
pip install requests pylint mypy
|
|
|
|
- run: |
|
|
pylint sgeext.py
|
|
mypy --install-types --non-interactive --implicit-optional sgeext.py
|