From 394bd72747eb08597eaab31464d193e335bccdb2 Mon Sep 17 00:00:00 2001 From: swve Date: Sun, 7 May 2023 20:16:06 +0000 Subject: [PATCH] feat: add backend lint --- .github/workflows/backend-lint.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/backend-lint.yaml diff --git a/.github/workflows/backend-lint.yaml b/.github/workflows/backend-lint.yaml new file mode 100644 index 00000000..2f495b9b --- /dev/null +++ b/.github/workflows/backend-lint.yaml @@ -0,0 +1,8 @@ +name: Backend Lint +on: [ push, pull_request ] +jobs: + ruff: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: chartboost/ruff-action@v1 \ No newline at end of file