From 0db5d4d31c62348179b302ce52509f13c3a806f8 Mon Sep 17 00:00:00 2001 From: official-Cromatin Date: Wed, 8 Oct 2025 15:17:04 +0200 Subject: [PATCH] Add ruff task to run on push and pull_request Source: https://docs.astral.sh/ruff/integrations/#github-actions --- .github/workflows/ruff.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/ruff.yml diff --git a/.github/workflows/ruff.yml b/.github/workflows/ruff.yml new file mode 100644 index 0000000..d79e6d0 --- /dev/null +++ b/.github/workflows/ruff.yml @@ -0,0 +1,9 @@ +name: Linting (Ruff) + +on: [push, pull_request] +jobs: + ruff: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - uses: astral-sh/ruff-action@v3