feat: introduce WireMock for testing #404
Workflow file for this run
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: HTML Sanity Check Matrix Test | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: | |
jobs: | |
build-artifacts: | |
uses: ./.github/workflows/build-artifacts.yml | |
with: | |
# SonarQube requires JDK 17 or higher | |
java-version: '17' | |
test-java-os-mix: | |
needs: build-artifacts | |
strategy: | |
matrix: | |
os-version: [ ubuntu-latest, macos-14, windows-latest ] | |
java-version: [ 8, 11, 17, 21 ] | |
exclude: | |
- os-version: macos-14 | |
java-version: 8 | |
runs-on: ${{ matrix.os-version }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java-version }} | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build-artifacts | |
path: . | |
- name: Execute integration test (on Unixes) | |
run: | | |
cd integration-test/gradle-plugin | |
uname -a | |
./gradlew --version | |
./gradlew htmlSanityCheck --scan | |
- name: Collect state upon failure | |
if: failure() | |
run: | | |
echo "Git:" | |
git status | |
echo "Env:" | |
env | |
echo "PWD:" | |
pwd | |
echo "Files:" | |
find * -ls |