File tree Expand file tree Collapse file tree
.github/.github/workflows Expand file tree Collapse file tree 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://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
3+ #
4+ # This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech)
5+
6+ name : Java CI with Maven
7+
8+ on :
9+ push :
10+ branches : [ main, master ]
11+ pull_request :
12+ branches : [ main, master ]
13+
14+ jobs :
15+ build :
16+ name : Build TemplateFox API
17+ runs-on : ubuntu-latest
18+ strategy :
19+ matrix :
20+ java : [ 17, 21 ]
21+ steps :
22+ - uses : actions/checkout@v4
23+ - name : Set up JDK
24+ uses : actions/setup-java@v4
25+ with :
26+ java-version : ${{ matrix.java }}
27+ distribution : ' temurin'
28+ cache : maven
29+ - name : Build with Maven
30+ run : mvn -B package --no-transfer-progress --file pom.xml
You can’t perform that action at this time.
0 commit comments