From d68344867b6839c8081be5a877f1127ebbdf9acd Mon Sep 17 00:00:00 2001 From: tduhamel42 Date: Wed, 22 Oct 2025 11:49:06 +0200 Subject: [PATCH] fix: add dev branch to test workflow triggers The test workflow was configured for 'develop' but the actual branch is named 'dev'. This caused tests not to run on PRs to dev branch. Now tests will run on: - PRs to: main, master, dev, develop - Pushes to: main, master, dev, develop, feature/** --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7f2f6bf..7fc6342 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,9 +2,9 @@ name: Tests on: push: - branches: [ main, master, develop, feature/** ] + branches: [ main, master, dev, develop, feature/** ] pull_request: - branches: [ main, master, develop ] + branches: [ main, master, dev, develop ] jobs: validate-workers: