Skip to content

Commit

Permalink
add black linter
Browse files Browse the repository at this point in the history
  • Loading branch information
rsarm committed May 8, 2024
1 parent 06c7be2 commit de3b0ae
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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: false
VALIDATE_PYTHON_BLACK: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit de3b0ae

Please sign in to comment.