diff --git a/.github/workflows/linters.yaml b/.github/workflows/linters.yaml index fcee44a..29e355c 100644 --- a/.github/workflows/linters.yaml +++ b/.github/workflows/linters.yaml @@ -1,6 +1,9 @@ name: Linters on: + push: + branches: + - '**' pull_request: branches: - '**' @@ -17,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 @@ -27,4 +29,4 @@ jobs: run: ruff check . - name: flake8 - run: flake8 . \ No newline at end of file + run: flake8 .