Skip to content

Commit

Permalink
Draft of GitHub Action for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
msommerh committed Oct 15, 2024
1 parent dc038d4 commit 6bda355
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: flake8 linter

on: [push, pull_request]

jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9.7'

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

0 comments on commit 6bda355

Please sign in to comment.