Skip to content

Run Tests

Run Tests #435

Workflow file for this run

name: Run Tests
concurrency:
group: run-tests-${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
branches:
- master
- kotlin/**
jobs:
run-kotlin-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-kotlin-tests.yaml
run-swift-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-swift-tests.yaml
run-integration-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
needs:
- run-kotlin-tests
- run-swift-tests
uses: ./.github/workflows/run-integration-tests.yaml

Check failure on line 23 in .github/workflows/run-tests.yaml

View workflow run for this annotation

GitHub Actions / Run Tests

Invalid workflow file

The workflow is not valid. In .github/workflows/run-tests.yaml (Line: 23, Col: 11): Error from called workflow rickclephas/KMP-NativeCoroutines/.github/workflows/run-integration-tests.yaml@5f3b82adfab920ded3bd475e0c990a9921b37f9e (Line: 17, Col: 3): The workflow must contain at least one job with no dependencies.
run-idea-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-idea-tests.yaml