Skip to content

Commit

Permalink
chore: add linter github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomáš Sasák committed Jun 26, 2023
1 parent 53a9b48 commit 6796c81
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Linter

on:
push:
branches:
- "master"
pull_request:
branches:
- "master"

jobs:
linter:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Run black
uses: psf/black@stable
with:
options: "--check --verbose --include grouper|listener|evaluator"
version: "~= 23.3.0"

0 comments on commit 6796c81

Please sign in to comment.