File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 1010 - ' example/**'
1111 - ' .github/workflows/*example*'
1212
13- defaults :
14- run :
15- working-directory : ./example
16-
1713jobs :
1814 build :
1915 runs-on : ubuntu-latest
3733 key : ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/pom.xml') }}
3834 restore-keys : ${{ runner.os }}-m2-v17-${{ secrets.CACHE_VERSION }}
3935
40- - name : Build
41- run : mvn --batch-mode compile
36+ # TODO: revert later — currently forcing branch checkout for GitHub build
37+ - name : Build and install library
38+ run : mvn -B clean install -DskipTests
4239
43- - name : Test and package
44- run : mvn --batch-mode package
40+ # TODO: revert later — currently forcing branch checkout for GitHub build
41+ - name : Build example app
42+ run : |
43+ cd example
44+ mvn -B clean verify
4545
You can’t perform that action at this time.
0 commit comments