File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
2+ # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven
3+
4+ name : build
5+ on :
6+ push :
7+ branches : [ "master" ]
8+ pull_request :
9+ branches : [ "master" ]
10+
11+ jobs :
12+ build :
13+
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v4
18+ with :
19+ show-progress : false
20+ # needed for the git-commit-id-plugin to work
21+ fetch-depth : 0
22+ - name : Set up JDK 21
23+ uses : actions/setup-java@v4
24+ with :
25+ java-version : ' 21'
26+ distribution : ' temurin'
27+ cache : maven
28+ - name : Maven verify
29+ run : mvn verify
You can’t perform that action at this time.
0 commit comments