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 80d324f commit f059e34Copy full SHA for f059e34
.github/workflows/ci.yml
@@ -94,6 +94,13 @@ jobs:
94
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/initial-version' }} # TODO remove when initial-version is removed
95
- name: "Check if binary works"
96
run: "./gradlew testAllCliNative"
97
+ - name: "upload binary" # for debugging
98
+ uses: actions/upload-artifact@v4
99
+ with:
100
+ name: "spotless-native-binary--${{ matrix.platform.name }}"
101
+ path: app/build/native/nativeCompile/spotless
102
+ retention-days: 7
103
+ if-no-files-found: "error"
104
- name: "junit result"
105
uses: "mikepenz/action-junit-report@v4"
106
if: "always()"
0 commit comments