1
0
mirror of https://github.com/HorlogeSkynet/SgEExt synced 2025-06-30 16:00:19 +02:00
Files
SgEExt/.github/workflows/linting.yml
2022-04-23 12:01:09 +02:00

23 lines
419 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@v3
- uses: actions/setup-python@v3
- run: |
python -m pip install --upgrade pip
pip install requests pylint mypy
- run: |
pylint sgeext.py
mypy --install-types --non-interactive sgeext.py