Skip to content

Commit

Permalink
ci: Follow the example and add "files"
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Feb 16, 2024
1 parent 5f0e2da commit 6571d86
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/wave.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
with:
json: true
quotepath: false
escape_json: false
files: |
modules/**/environment.yml
Expand All @@ -36,6 +37,7 @@ jobs:
with:
json: true
quotepath: false
escape_json: false
files: |
modules/**/Dockerfile
Expand All @@ -45,6 +47,7 @@ jobs:
with:
json: true
quotepath: false
escape_json: false
files: |
modules/**/spack.yml
Expand All @@ -56,7 +59,9 @@ jobs:
timeout-minutes: 60
strategy:
fail-fast: false
matrix: "${{ fromJson(needs.gen-matrix.outputs.conda-matrix) }}"
matrix:
max-parallel: 4
files: "${{ fromJson(needs.gen-matrix.outputs.conda-matrix) }}"
steps:
# Use the @nf-core-bot token to check out so we can push later
- uses: actions/checkout@v4
Expand Down Expand Up @@ -93,7 +98,9 @@ jobs:
timeout-minutes: 60
strategy:
fail-fast: false
matrix: "${{ fromJson(needs.gen-matrix.outputs.docker-matrix) }}"
matrix:
max-parallel: 4
files: "${{ fromJson(needs.gen-matrix.outputs.conda-matrix) }}"
steps:
# Use the @nf-core-bot token to check out so we can push later
- uses: actions/checkout@v4
Expand Down Expand Up @@ -130,7 +137,9 @@ jobs:
timeout-minutes: 60
strategy:
fail-fast: false
matrix: "${{ fromJson(needs.gen-matrix.outputs.spack-matrix) }}"
matrix:
max-parallel: 4
files: "${{ fromJson(needs.gen-matrix.outputs.conda-matrix) }}"
steps:
# Use the @nf-core-bot token to check out so we can push later
- uses: actions/checkout@v4
Expand Down

0 comments on commit 6571d86

Please sign in to comment.