Skip to content

Commit

Permalink
Prep for contributors with central linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
grosscol committed Nov 13, 2023
1 parent beebee5 commit 9d1f310
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
name: Linting
on: [push, pull_request]

jobs:
flake8-lint:
runs-on: ubuntu-latest
name: Lint
steps:
- name: Check out source repository
uses: actions/checkout@v3

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

- name: flake8 Lint
uses: py-actions/flake8@v2

0 comments on commit 9d1f310

Please sign in to comment.