Skip to content

* Increased version of checkout GHA in workflow to v3. #71

* Increased version of checkout GHA in workflow to v3.

* Increased version of checkout GHA in workflow to v3. #71

Workflow file for this run

name: Build Phosphor, run the integration test suite
on: [push, pull_request]
jobs:
build-and-test:
runs-on: self-hosted
env:
JAVA_HOME: /usr/lib/jvm/java-11-openjdk-amd64
strategy:
fail-fast: false
matrix:
# java: [ '8', '11', '16', '17' ]
java: [ '8', '11', '16' ]
steps:
- uses: actions/checkout@v3
- name: Build Phosphor
run: mvn -B -ntp -DskipTests install
- name: Setup java
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
- name: Run tests
run: mvn install -ntp -Ddacapo.skip=false