-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (45 loc) · 1.24 KB
/
pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Verify Pull Request
env:
MAVEN_ARGS: -V -ntp -e
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
on:
pull_request:
paths-ignore:
- 'docs/**'
branches: [ main ]
workflow_dispatch:
jobs:
check_format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java and Maven
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: 'maven'
- name: Check code format
run: |
./mvnw ${MAVEN_ARGS} formatter:validate -Dconfigfile=$PWD/contributing/eclipse-google-style.xml
./mvnw ${MAVEN_ARGS} impsort:check
- name: Run unit tests
run: ./mvnw ${MAVEN_ARGS} clean install
build_with_integration_tests:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17 ]
kubernetes: [ 'v1.26.12', 'v1.27.9', 'v1.28.5' ]
steps:
- uses: actions/checkout@v4
- name: Set up Java and Maven
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}
cache: 'maven'
- name: Run integration tests
run: ./mvnw ${MAVEN_ARGS} clean install