27 lines
511 B
YAML
27 lines
511 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.11'
|
|
- name: Install lint tools
|
|
run: |
|
|
pip install ruff mypy
|
|
- name: Run ruff
|
|
run: |
|
|
ruff check .
|
|
- name: Run mypy
|
|
run: |
|
|
mypy shellgen/ --ignore-missing-imports
|