File tree Expand file tree Collapse file tree 1 file changed +26
-1
lines changed
Expand file tree Collapse file tree 1 file changed +26
-1
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,32 @@ permissions:
1111 contents : read
1212
1313jobs :
14- test-build :
14+ linux-test-build :
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v4
19+ with :
20+ fetch-depth : 0
21+
22+ - id : ' auth'
23+ name : ' Authenticate to Google Cloud'
24+ uses : ' google-github-actions/auth@v2'
25+ with :
26+ workload_identity_provider : ${{ secrets.GCP_STREAMX_RELEASES_WORKLOAD_IDENTITY_PROVIDER }}
27+ service_account : ${{ secrets.GCP_STREAMX_RELEASES_READ_SA }}
28+
29+ - name : Set up JDK 17
30+ uses : actions/setup-java@v3
31+ with :
32+ java-version : ' 17'
33+ distribution : ' adopt'
34+ cache : ' maven'
35+
36+ - name : Build project
37+ run : |
38+ ./mvnw clean verify -P all-tests
39+ windows-test-build :
1540 runs-on : ubuntu-latest
1641 steps :
1742 - name : Checkout
You can’t perform that action at this time.
0 commit comments