Skip to content

Commit

Permalink
Add flake8 lint check in CI (#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
dboreham authored Sep 4, 2023
1 parent f48f497 commit 2c930bd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lint Checks

on:
pull_request:
branches: '*'
push:
branches: '*'

jobs:
test:
name: "Run linter"
runs-on: ubuntu-latest
steps:
- name: "Clone project repository"
uses: actions/checkout@v3
- name: "Install Python"
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name : "Run flake8"
uses: py-actions/flake8@v2

0 comments on commit 2c930bd

Please sign in to comment.