Skip to content

Commit 7052619

Browse files
authored
[Elm] Fix not compiling all elm files in test suite (#20191)
* Fix not trying to compile all elm files * Validate that changes to pipeline works
1 parent 7b35613 commit 7052619

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/samples-elm.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ name: Samples Elm
33
on:
44
push:
55
paths:
6+
- .github/workflows/samples-elm.yaml
67
- samples/client/petstore/elm/**
78
- samples/openapi3/client/elm/**
89
pull_request:
910
paths:
11+
- .github/workflows/samples-elm.yaml
1012
- samples/client/petstore/elm/**
1113
- samples/openapi3/client/elm/**
1214
jobs:
@@ -32,4 +34,4 @@ jobs:
3234
# An .elm file couldn't be compiled
3335
# No .elm files were found
3436
# No elm.json file could be found in the root of the working directory
35-
run: elm make $(find . -name *.elm) --output=/dev/null
37+
run: elm make $(find . -name "*.elm") --output=/dev/null

0 commit comments

Comments
 (0)