18 lines
262 B
YAML
18 lines
262 B
YAML
![]() |
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- 'main'
|
||
|
|
||
|
jobs:
|
||
|
lint:
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: actions/setup-python@v5
|
||
|
with:
|
||
|
python-version: '3.10'
|
||
|
cache: 'pip'
|
||
|
- name: Lint
|
||
|
- run: |
|
||
|
pip install flake8 api.py
|
||
|
|