Add more test tasks #13
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: Build | |
permissions: | |
checks: write | |
on: | |
pull_request: | |
paths-ignore: | |
- 'documentation/**' | |
- '*.md' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'documentation/**' | |
- '*.md' | |
jobs: | |
test-jvm: | |
name: Run jvmTest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Run jvmTest | |
run: ./gradlew jvmTest --stacktrace | |
- name: Publish jvmTest report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
check_name: JVM tests | |
report_paths: 'logger/build/test-results/jvmTest/TEST-*.xml' | |
test-js: | |
name: Run jsTest | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Setup Firefox browser | |
uses: browser-actions/setup-firefox@v1 | |
- run: firefox --version | |
- name: Run jsTest | |
run: ./gradlew jsTest --stacktrace | |
- name: Publish jsNodeTest report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
check_name: NodeJS tests | |
report_paths: 'logger/build/test-results/jsNodeTest/TEST-*.xml' | |
- name: Publish jsBrowserTest report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
check_name: Browser tests | |
report_paths: 'logger/build/test-results/jsBrowserTest/TEST-*.xml' | |
test-iosX64: | |
name: Run iosX64Test | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Run iosX64Test | |
run: ./gradlew iosX64Test --stacktrace | |
- name: Publish iosSimulatorArm64Test report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
check_name: iOS tests | |
report_paths: 'logger/build/test-results/iosSimulatorArm64Test/TEST-*.xml' |