We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 623b913 commit 177aaedCopy full SHA for 177aaed
.github/workflows/ci.yml
@@ -47,15 +47,11 @@ jobs:
47
run: chmod +x mvnw
48
- name: Build fastexcel-support
49
run: ./mvnw -pl fastexcel-support install -B -V
50
- - name: Check CGLIB in JAR
+ - name: Check Directories in JAR
51
run: |
52
jar -xf fastexcel-support/target/fastexcel-support-*.jar
53
- if [ -d "cn/idev/excel/support/cglib" ]; then
54
- echo "CGLIB directory exists in the JAR."
55
- else
56
- echo "CGLIB directory does not exist in the JAR."
57
- exit 1
58
- fi
+ echo "Listing directories under /cn/idev/excel/support:"
+ find cn/idev/excel/support -type d
59
- name: Test with Maven
60
if: ${{ matrix.java == '8' }}
61
run: ./mvnw test -B -Dmaven.test.skip=false
0 commit comments