Skip to content

Commit

Permalink
Create GitHub Action for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
WaughB committed Jan 7, 2024
1 parent 3c9a515 commit cfa2bda
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/linter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lint Code Base

on: [push, pull_request]

jobs:
build:
name: Lint Code Base
runs-on: ubuntu-latest

steps:

- name: Checkout Code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Lint Code Base
uses: github/super-linter@v4
env:
VALIDATE_ALL_CODEBASE: true
VALIDATE_PYTHON_BLACK: true

0 comments on commit cfa2bda

Please sign in to comment.