Skip to content

Commit

Permalink
Add branches to daily action
Browse files Browse the repository at this point in the history
Add branches to daily action.

Signed-off-by: David Enyeart <enyeart@us.ibm.com>
  • Loading branch information
denyeart committed Jan 11, 2024
1 parent a182fe2 commit a08cdb1
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ on:
jobs:
test_schedule:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
branch:
- "main"
- "release-2.5"
- "release-2.4"
steps:
- uses: actions/checkout@v4
- name: HSM
run: make regression/hsm
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- name: HSM
run: make regression/hsm


0 comments on commit a08cdb1

Please sign in to comment.