From 5bc4b91fec13e48c5abbe72ea7239b19b8410d87 Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Thu, 8 Jun 2023 22:58:00 +0200 Subject: [PATCH] feat: add lint --- .gitea/workflows/lint.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitea/workflows/lint.yml diff --git a/.gitea/workflows/lint.yml b/.gitea/workflows/lint.yml new file mode 100644 index 0000000..8f9c77c --- /dev/null +++ b/.gitea/workflows/lint.yml @@ -0,0 +1,11 @@ +name: black-action +on: [push, pull_request] +jobs: + linter_name: + name: runner / black formatter + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: https://github.com/datadog/action-py-black-formatter@v2.1 + with: + check_mode: "true" \ No newline at end of file