Skip to content

Commit

Permalink
Fix yaml workflow file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
rickclephas committed Jul 31, 2024
1 parent b50d6dd commit 5f3b82a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ on:
jobs:
run-kotlin-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-kotlin-tests.yml
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.yml
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.yml
uses: ./.github/workflows/run-integration-tests.yaml
run-idea-tests:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
uses: ./.github/workflows/run-idea-tests.yml
uses: ./.github/workflows/run-idea-tests.yaml

0 comments on commit 5f3b82a

Please sign in to comment.