Skip to content

Commit

Permalink
Add support and CI tests for Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyer committed Sep 14, 2022
1 parent 53343c2 commit 70f615a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

This comment has been minimized.

Copy link
@arey

arey Sep 15, 2022

Contributor

Step name could be change to Set up JDK ${{matrix.java}}

This comment has been minimized.

Copy link
@dsyer

dsyer Sep 15, 2022

Author Member

Good idea

uses: actions/setup-java@v2
with:
java-version: '11'
java-version: ${{matrix.java}}
distribution: 'adopt'
cache: maven
- name: Build with Maven Wrapper
Expand Down
1 change: 1 addition & 0 deletions .springjavaformatconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
java-baseline=8

0 comments on commit 70f615a

Please sign in to comment.