Skip to content

Commit

Permalink
Merge branch 'master' of github.com:AlexeyPlz/Test_Project
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexey Polazin committed Jun 24, 2023
2 parents d3b6fd6 + 81ef0a3 commit 5ac9255
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/codestyle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: codestyle

on: [push]

jobs:
codestyle:
name: Check codestyle
runs-on: ubuntu-latest
steps:
-
name: Check out the repo
uses: actions/checkout@v2
-
name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
-
name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pep8-naming flake8-broken-line flake8-return flake8-isort
pip install -r requirements.txt
-
name: Check with flake8
run: python -m flake8

0 comments on commit 5ac9255

Please sign in to comment.