mirror of
https://github.com/FuzzingLabs/fuzzforge_ai.git
synced 2026-05-15 10:57:59 +02:00
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/**
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user