1
0
mirror of https://github.com/civsocit/olgram.git synced 2025-12-19 17:36:17 +00:00
This commit is contained in:
mihalin
2021-09-09 10:58:33 +03:00
parent 56b9528338
commit 68e60bb0c7
8 changed files with 89 additions and 17 deletions

23
.github/workflows/lint.yaml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Linter
on: push
env:
PYTHONUNBUFFERED: 1
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8
- name: Check flake8
run: python -m flake8 .