diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml new file mode 100644 index 0000000..4aff0e9 --- /dev/null +++ b/.github/workflows/black.yml @@ -0,0 +1,12 @@ +name: black-action +on: [push, pull_request] +jobs: + linter_name: + name: runner / black formatter + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: rickstaa/action-black@v1 + with: + black_args: ". --check" + fail_on_error: "False" \ No newline at end of file