chore: Add a test + update docs on JUnit 4 report dir default #1836 #265
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: Pact-JVM Compatibility Suite | |
on: | |
push: | |
branches: [ master, v4.1.x, v4.4.x, v4.5.x ] | |
pull_request: | |
branches: [ master, v4.1.x, v4.4.x, v4.5.x ] | |
jobs: | |
v1: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Build with Gradle | |
run: ./gradlew --no-daemon :compatibility-suite:v1 | |
- name: Archive cucumber results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cucumber-report | |
path: compatibility-suite/build/cucumber-report-v1.html | |
if: always() | |
v2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Build with Gradle | |
run: ./gradlew --no-daemon :compatibility-suite:v2 | |
- name: Archive cucumber results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cucumber-report | |
path: compatibility-suite/build/cucumber-report-v2.html | |
if: always() | |
v3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Build with Gradle | |
run: ./gradlew --no-daemon :compatibility-suite:v3 | |
- name: Archive cucumber results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cucumber-report | |
path: compatibility-suite/build/cucumber-report-v3.html | |
if: always() | |
v4: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 18 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 18 | |
- name: Build with Gradle | |
run: ./gradlew --no-daemon :compatibility-suite:v4 | |
- name: Archive cucumber results | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cucumber-report | |
path: compatibility-suite/build/cucumber-report-v4.html | |
if: always() |