Skip to content

Commit

Permalink
Added workflow for running tests on all branches.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jardo-51 committed Apr 7, 2024
1 parent 2c5724e commit 4937b93
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test-all-branches.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test all branches

on: [workflow_dispatch]

jobs:
execute-tests:
runs-on: ubuntu-latest
strategy:
matrix:
branch: ["main", "develop", "release/v1.1.0", "bugfix/BUG-458"]
steps:
- id: invoke
uses: aurelien-baudet/workflow-dispatch@v2
with:
workflow: test-current-branch.yml
repo: maven-flow/manage-versions-test
wait-for-completion-interval: 10s
ref: ${{ matrix.branch }}

0 comments on commit 4937b93

Please sign in to comment.