Skip to content

Commit

Permalink
Add GitHub action to automate linting (#6157)
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Jun 8, 2022
1 parent e36f345 commit 1dcf3b7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/lint.yml
@@ -0,0 +1,16 @@
name: Lint code

on:
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
- name: Run pre-commit
uses: pre-commit/action@v3.0.0

0 comments on commit 1dcf3b7

Please sign in to comment.