Skip to content

Commit

Permalink
Adding linting with flake8
Browse files Browse the repository at this point in the history
Fixes #6
  • Loading branch information
haydentherapper authored Oct 20, 2023
1 parent 6de8be7 commit a0c5690
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint

on: [push, pull_request]

jobs:
flake8-lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Python environment
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
with:
python-version: "3.11"
- name: flake8 Lint
uses: py-actions/flake8@2014ef764424fd7699d615323c17836092bec9b9 # v2.2.1

0 comments on commit a0c5690

Please sign in to comment.