Skip to content

Commit aa5f13d

Browse files
committed
sequential not needed
1 parent c902abf commit aa5f13d

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
jobs:
88
test_projects:
99
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
projects: [bioproject, nfproject, pyproject]
1013
steps:
1114
- uses: actions/checkout@v4
1215
- uses: actions/setup-python@v5
@@ -16,12 +19,6 @@ jobs:
1619
- name: install_cookiecutter
1720
run: |
1821
pip install cookiecutter
19-
- name: bioproject
22+
- name: ${ matrix.projects }
2023
run: |
21-
cookiecutter --directory bioproject . --no-input
22-
- name: nfproject
23-
run: |
24-
cookiecutter --directory nfproject . --no-input
25-
- name: pyproject
26-
run: |
27-
cookiecutter --directory pyproject . --no-input
24+
cookiecutter --directory ${{ matrix.projects }} . --no-input

0 commit comments

Comments
 (0)