Skip to content

Commit 3ec607d

Browse files
committed
bring back excludes
1 parent 3d1c161 commit 3ec607d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/java_compatibility_check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Check Java 8 compatibility for class files
3333
shell: bash
3434
run: |
35-
find . -type f -name "*.class" -path "*/classes/*" -print |\
35+
find . -type f -name "*.class" -path "*/classes/*" -not -path "*/grpc-*" -not -path "*/proto-*/*" -print |\
3636
while IFS= read -r class_file; do
3737
version=$(javap -v "${class_file}" | grep "major version" | cut -d ' ' -f 5)
3838
if [[ "${version}" != "52" ]]; then

0 commit comments

Comments
 (0)