fix(ci): correct reusable workflow paths #7
Workflow file for this run
This file contains hidden or 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: Integration Tests - Runtimes | ||
| on: | ||
| workflow_dispatch: | ||
| # Manual trigger for testing runtime install/uninstall without migrations | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| node: | ||
| name: Node.js | ||
| uses: CodingWithCalvin/.github/workflows/dtvem/integration-test-node.yml@main | ||
|
Check failure on line 13 in .github/workflows/integration-test-runtimes.yml
|
||
| with: | ||
| version1: '20.18.0' | ||
| version2: '22.11.0' | ||
| python: | ||
| name: Python | ||
| uses: CodingWithCalvin/.github/workflows/dtvem/integration-test-python.yml@main | ||
| with: | ||
| version1: '3.11.9' | ||
| version2: '3.12.7' | ||
| ruby: | ||
| name: Ruby | ||
| uses: CodingWithCalvin/.github/workflows/dtvem/integration-test-ruby.yml@main | ||
| with: | ||
| version1: '3.3.6' | ||
| version2: '3.4.1' | ||