diff --git a/.github/workflows/formatting_check.yaml b/.github/workflows/formatting_check.yaml new file mode 100644 index 00000000..e6551fdd --- /dev/null +++ b/.github/workflows/formatting_check.yaml @@ -0,0 +1,15 @@ +name: Black Code Formatter + +on: [push, pull_request] + +permissions: + contents: read + +jobs: + formatting_check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: psf/black@stable + with: + options: "--check --verbose --diff --color"