Skip to content

Commit 5045609

Browse files
authored
ci: add note about excluding end-to-end tests from script validation
1 parent 9f0928b commit 5045609

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/build.main.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ workflow(
102102
command = """
103103
find -name *.main.kts -print0 | while read -d ${'$'}'\0' file
104104
do
105+
# This script requires extra steps before it can be compiled, i.e. publishing
106+
# the library to Maven Local. It's handled by the consistency check in this workflow.
105107
if [ "${'$'}file" = "./.github/workflows/end-to-end-tests.main.kts" ]; then
106108
continue
107109
fi
@@ -134,6 +136,8 @@ workflow(
134136
command = """
135137
find -name "*.main.kts" -print0 | while read -d ${'$'}'\0' file
136138
do
139+
# This script requires extra steps before it can be compiled, i.e. publishing
140+
# the library to Maven Local. It's handled by the consistency check in this workflow.
137141
if [ "${'$'}file" = "./.github/workflows/end-to-end-tests.main.kts" ]; then
138142
continue
139143
fi

0 commit comments

Comments
 (0)