From 301b89749bde756a5af1436cee312cbf7cddc9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Katharina=20Dr=C3=B6ge?= Date: Thu, 9 Apr 2026 19:35:51 +0200 Subject: [PATCH] Add Ruff lint workflow --- .github/workflows/lint-ruff.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/lint-ruff.yml diff --git a/.github/workflows/lint-ruff.yml b/.github/workflows/lint-ruff.yml new file mode 100644 index 0000000..0f0c8bc --- /dev/null +++ b/.github/workflows/lint-ruff.yml @@ -0,0 +1,13 @@ +name: Lint with Ruff +on: + push: + branches: [ '*' ] + pull_request: + branches: [ '*' ] + +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - uses: astral-sh/ruff-action@v3