Skip to content

Commit 7446245

Browse files
authored
Add F# license header check (#5677)
1 parent e88c723 commit 7446245

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/check-license-headers.sh

+6
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,12 @@ for f in $(git ls-files | grep '\.cs$'); do
3232
fi
3333
done
3434

35+
for f in $(git ls-files | grep '\.fs$'); do
36+
if ! check_license_header $f; then
37+
nErrors=$((nErrors+1))
38+
fi
39+
done
40+
3541
if [[ $nErrors -eq 0 ]]; then
3642
exit 0
3743
else

0 commit comments

Comments
 (0)