Skip to content

Try to find files in current directory #61

Try to find files in current directory

Try to find files in current directory #61

name: HTML Sanity Check Matrix Test
on:
push:
paths:
- .github/workflows/test-java-os-mix.yml
workflow_dispatch: {}
jobs:
test-java-os-mix:
strategy:
matrix:
os-version: [ ubuntu-latest, macos-14, windows-latest ]
java-version: [ 11, 17, 21 ]
runs-on: ${{ matrix.os-version }}
steps:
- name: Check out
uses: actions/checkout@v4
- name: Download (Maven) Artifacts
uses: dawidd6/action-download-artifact@v3
with:
workflow: gradle-build.yml
name: maven-repo
path: build/maven-repo
- name: Download (CLI) Artifacts
uses: dawidd6/action-download-artifact@v3
with:
workflow: gradle-build.yml
name: CLI
path: htmlSanityCheck-cli/build/install
- name: Make file executable
run: chmod +x htmlSanityCheck-cli/build/install/hsc/bin/hsc
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java-version }}
- name: List files (Unix)
if: runner.os != 'Windows'
run: find * -ls
- name: List files (Windows)
if: runner.os == 'Windows'
run: dir /s /b
- name: Execute integration test
run: |
uname -a
./gradlew --version
./gradlew info
./gradlew integrationTestOnly --scan