You've already forked wakapi-readme-stats
24 lines
486 B
YAML
24 lines
486 B
YAML
name: CODESTYLE
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Run codestyle check
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Python 3.6 🐍
|
|
uses: actions/setup-python@v3
|
|
with:
|
|
python-version: 3.6.7
|
|
|
|
- name: Install Dependencies 📥
|
|
run: pip install -r requirements.txt
|
|
|
|
- name: Run Codestyle ✔️
|
|
run: flake8 --max-line-length=160 --exclude venv,assets . |