Skip to content

Commit dfd99d5

Browse files
committed
ci: Composite actions have to be in an actions.yaml file
1 parent fa66a49 commit dfd99d5

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/pytest-core-mpi.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,14 +91,14 @@ jobs:
9191

9292
- id: build
9393
name: Build docker image
94-
uses: ./.github/actions/docker-build.yaml
94+
uses: ./.github/actions/docker-build
9595
with:
9696
file: docker/Dockerfile.devito
9797
tag: devito_img
9898
base: devitocodes/bases:cpu-${{ matrix.arch }}
9999

100100
- name: Test with pytest
101-
uses: ./.github/actions/docker-run.yaml
101+
uses: ./.github/actions/docker-run
102102
with:
103103
id: ${{ steps.build.outputs.unique }}
104104
env: |
@@ -108,7 +108,7 @@ jobs:
108108
command: "pytest tests/test_mpi.py"
109109

110110
- name: Test acoustic example with MPI
111-
uses: ./.github/actions/docker-run.yaml
111+
uses: ./.github/actions/docker-run
112112
with:
113113
id: ${{ steps.build.outputs.unique }}
114114
args: ${{ matrix.mpiflag }}
@@ -119,7 +119,7 @@ jobs:
119119
command: "mpiexec -n 2 pytest examples/seismic/acoustic"
120120

121121
- name: Test tti example with MPI
122-
uses: ./.github/actions/docker-run.yaml
122+
uses: ./.github/actions/docker-run
123123
with:
124124
# --name examplerun
125125
id: ${{ steps.build.outputs.unique }}
@@ -131,7 +131,7 @@ jobs:
131131
command: "mpiexec -n 2 pytest examples/seismic/tti"
132132

133133
- name: Cleanup docker image
134-
uses: ./.github/actions/docker-clean.yaml
134+
uses: ./.github/actions/docker-clean
135135
with:
136136
id: ${{ steps.build.outputs.unique }}
137137
tag: devito_img

0 commit comments

Comments
 (0)