From 0fd150d1726b2326622b830f40a1c9add80777d8 Mon Sep 17 00:00:00 2001 From: Khara-bb Date: Sat, 27 Sep 2025 19:09:47 +0200 Subject: [PATCH] add checks on your PRs/Push - any pushes on dev would trigger the quality flow - any PR will show the checks directly in the PR --- .github/workflows/quality.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index af1e787..ce0dec2 100755 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -2,9 +2,12 @@ name: Code Quality on: push: - branches: [ "v2.2" ] + branches: + - 'dev' pull_request: - branches: [ "v2.2" ] + branches: + - 'dev' + - 'v2*' jobs: lint-test: @@ -47,4 +50,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: coverage-html-${{ matrix.python-version }} - path: htmlcov/ \ No newline at end of file + path: htmlcov/