Skip to content

Commit

Permalink
Create pep8_check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tsebaka committed Jul 2, 2024
1 parent 0bbfe9d commit 2a4e806
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/pep8_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: PEP8 Code Style Check

on: [push, pull_request]

jobs:
flake8:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8
run: |
flake8 .

0 comments on commit 2a4e806

Please sign in to comment.