chore(deps): update dependency mkdocs-material to v9.5.43 #401
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: Run Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- '*.md' | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run Tests | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macOS-14 ] | |
runs-on: ${{matrix.os}} | |
if: github.repository == 'MayakaApps/Kache' | |
permissions: | |
contents: read | |
checks: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate Gradle wrapper | |
uses: gradle/actions/wrapper-validation@v3 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Setup gradle | |
uses: gradle/actions/setup-gradle@v3 | |
- name: Run check & tests for JVM, JS, and Linux tier 1 & 2 K/N targets | |
if: startsWith(matrix.os, 'ubuntu') | |
run: ./gradlew check jvmTest jsTest linuxX64Test --stacktrace | |
- name: Run tests for Apple tier 1 & 2 K/N targets | |
if: startsWith(matrix.os, 'macOS') | |
run: ./gradlew macosX64Test macosArm64Test iosSimulatorArm64Test iosX64Test watchosSimulatorArm64Test watchosX64Test tvosSimulatorArm64Test tvosX64Test --stacktrace | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v4 | |
if: always() && github.event_name == 'pull_request' | |
with: | |
report_paths: '**/build/test-results/*/TEST-*.xml' | |
check_name: ${{ runner.os }} Test Report |