We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c74d848 commit 5fcc5dcCopy full SHA for 5fcc5dc
.github/workflows/master-snapshot-release.yml
@@ -1,13 +1,14 @@
1
name: Test & Release Snapshot to Maven Central
2
on:
3
push:
4
- branchs: [ master ]
+ branches: [ master ]
5
jobs:
6
test:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
java: [11, 15]
11
+ distribution: [adopt, adopt-j9]
12
kubernetes: ['v1.17.13','v1.18.12','v1.19.4']
13
steps:
14
- uses: actions/checkout@v2
@@ -20,6 +21,7 @@ jobs:
20
21
- name: Set up Java and Maven
22
uses: actions/setup-java@v2.1.0
23
with:
24
+ distribution: ${{ matrix.distribution }}
25
java-version: ${{ matrix.java }}
26
- name: Run unit tests
27
run: mvn -B test --file pom.xml
0 commit comments