diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml new file mode 100644 index 0000000..83fb84b --- /dev/null +++ b/.github/workflows/linters.yml @@ -0,0 +1,12 @@ +name: Linters + +on: [push, pull_request] + +jobs: + black: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: psf/black@stable + with: + options: "--check --verbose" \ No newline at end of file