We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b55cca commit c1ee067Copy full SHA for c1ee067
2 files changed
.github/workflows/build.yaml
@@ -8,6 +8,14 @@ jobs:
8
runs-on: ubuntu-20.04
9
steps:
10
- uses: actions/checkout@v4
11
+ - name: Set up JDK 17
12
+ uses: actions/setup-java@v3
13
+ with:
14
+ java-version: '17'
15
+ distribution: 'temurin'
16
+ server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
17
+ - name: Maven Package
18
+ run: mvn package
19
- name: Image
20
run: make build-image
21
- name: Run e2e
pom.xml
@@ -66,6 +66,7 @@
66
<version>${trpc-maven-plugin.version}</version>
67
<executions>
68
<execution>
69
+ <phase>validate</phase>
70
<goals>
71
<goal>gen-code</goal>
72
</goals>
0 commit comments