From 588535978eb59ff3e1081b8c49fb965dfae0a98b Mon Sep 17 00:00:00 2001 From: Konrad Bodzioch Date: Mon, 24 Nov 2025 18:43:02 +0100 Subject: [PATCH 1/2] Enable linters on push actions --- .github/workflows/linters.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index fcee44a..6fa22f0 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -1,6 +1,9 @@ name: Linters on: + push: + branches: + - '**' pull_request: branches: - '**' @@ -27,4 +30,4 @@ jobs: run: ruff check . - name: flake8 - run: flake8 . \ No newline at end of file + run: flake8 . From 903977cdef72ef192b198ea4606879696ff3088b Mon Sep 17 00:00:00 2001 From: Konrad Bodzioch Date: Mon, 24 Nov 2025 18:54:45 +0100 Subject: [PATCH 2/2] Switch to make for linter setup --- .github/workflows/linters.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index 6fa22f0..29e355c 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -20,8 +20,7 @@ jobs: python-version: 3.13 - name: Install libraries - run: | - pip install -e .[development] + run: make python-install-editable - name: mypy run: mypy ./src