diff --git a/.github/workflows/maven-build.yml b/.github/workflows/maven-build.yml index f7ad114..d3131c1 100644 --- a/.github/workflows/maven-build.yml +++ b/.github/workflows/maven-build.yml @@ -13,13 +13,16 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + java: [ '8', '11', '17' ] steps: - uses: actions/checkout@v2 - name: Set up JDK 11 uses: actions/setup-java@v2 with: - java-version: '11' + java-version: ${{matrix.java}} distribution: 'adopt' cache: maven - name: Build with Maven Wrapper diff --git a/.springjavaformatconfig b/.springjavaformatconfig new file mode 100644 index 0000000..1264378 --- /dev/null +++ b/.springjavaformatconfig @@ -0,0 +1 @@ +java-baseline=8 \ No newline at end of file