Feature/project initializer service (#158) #332
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Integration Tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test-linux-amd64: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java-version: [ '8', '11', '17' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
cache: maven | |
- name: Test Linux | |
env: | |
JDEPLOY_TEST_JVM_DOWNLOADS: true | |
run: bash build_and_test.sh | |
build-mac-x64: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
java-version: [ '8', '11', '17' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
cache: maven | |
- name: Test Mac | |
env: | |
JDEPLOY_TEST_JVM_DOWNLOADS: true | |
run: bash build_and_test.sh | |
build-win-x64: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java-version: [ '8', '11', '17' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
cache: maven | |
- name: Build Windows | |
env: | |
JDEPLOY_TEST_JVM_DOWNLOADS: true | |
run: bash build_and_test.sh | |
shell: bash |