From f2a30de16f1198461d58d04c2472a7d659de5b96 Mon Sep 17 00:00:00 2001 From: Andreas Bauer Date: Thu, 19 Oct 2023 21:37:04 +0200 Subject: [PATCH] Add ruff CI workflow --- .github/workflows/linter.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..5144018 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,8 @@ +name: Ruff linter +on: [ push, pull_request ] +jobs: + ruff: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: chartboost/ruff-action@v1