Skip to content

-Test Execution Impl (#576) #3

-Test Execution Impl (#576)

-Test Execution Impl (#576) #3

Workflow file for this run

name: Test Debug

Check failure on line 1 in .github/workflows/test_debug.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test_debug.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
on:
push:
branches: [master]
pull_request:
branches: [master]
workflow_run:
jobs:
test_debug:
name: Test Debug
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Execute Gradle command - testDebugUnitTest
run: ./gradlew :composeApp:cleanJvmTest :composeApp:jvmTest --tests "org.flexi.app.ComposeTest"