Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
valassi committed Nov 8, 2023
1 parent 61bde42 commit fe28e5a
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/testsuite_allprocesses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
jobs:

# See https://stackoverflow.com/a/75337311
oneprocess:
oneprocess_pr:
strategy:
fail-fast: false # important to see all results even if one fails (fail-fast is true by default)
matrix:
Expand All @@ -40,4 +40,18 @@ jobs:
# By default, in allprocesses tests enable FPE tests when pushing, but not in pull requests
enableFPE: github.event_name != 'pull_request'

# See https://stackoverflow.com/a/75337311
oneprocess_push:
strategy:
fail-fast: false # important to see all results even if one fails (fail-fast is true by default)
matrix:
# FIXME? Can the list of supported processes be specified only once in oneprocess.yml or allprocesses.yml?
process: [ee_mumu, gg_tt, gg_ttg, gg_ttgg, gg_ttggg, gg_tt01g, gq_ttq, pp_tt012j]
suffix: [mad, sa]
uses: ./.github/workflows/testsuite_oneprocess.yml
with:
process: ${{ matrix.process }}.${{ matrix.suffix }}
# By default, in allprocesses tests enable FPE tests when pushing, but not in pull requests
enableFPE: ${{ github.event_name }} != 'pull_request'

#----------------------------------------------------------------------------------------------------------------------------------

0 comments on commit fe28e5a

Please sign in to comment.