We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c902abf commit aa5f13dCopy full SHA for aa5f13d
.github/workflows/test.yml
@@ -7,6 +7,9 @@ on:
7
jobs:
8
test_projects:
9
runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ projects: [bioproject, nfproject, pyproject]
13
steps:
14
- uses: actions/checkout@v4
15
- uses: actions/setup-python@v5
@@ -16,12 +19,6 @@ jobs:
16
19
- name: install_cookiecutter
17
20
run: |
18
21
pip install cookiecutter
- - name: bioproject
22
+ - name: ${ matrix.projects }
23
- cookiecutter --directory bioproject . --no-input
- - name: nfproject
- run: |
24
- cookiecutter --directory nfproject . --no-input
25
- - name: pyproject
26
27
- cookiecutter --directory pyproject . --no-input
+ cookiecutter --directory ${{ matrix.projects }} . --no-input
0 commit comments