mirror of
https://github.com/ModOrganizer2/pystubs-generation.git
synced 2026-07-27 14:07:13 -07:00
21 lines
412 B
YAML
21 lines
412 B
YAML
name: Check Linting
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
checks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.12
|
|
- uses: abatilo/actions-poetry@v2
|
|
- name: Install
|
|
run: |
|
|
poetry install
|
|
- name: Lint
|
|
run: |
|
|
poetry run poe lint
|