Skip to content

Github Actions, Cache pip dependencies #296

Github Actions, Cache pip dependencies

Github Actions, Cache pip dependencies #296

Workflow file for this run

name: Build and Test
on:
push:
branches: [ main ]
paths-ignore:
- '.idea/**'
- '.run/**'
pull_request:
branches: [ main ]
paths-ignore:
- '.idea/**'
- '.run/**'
jobs:
test-dbt-3-9:
uses: ./.github/workflows/tests-dbt-python.yml

Check failure on line 17 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

error parsing called workflow ".github/workflows/tests.yml" -> "./.github/workflows/tests-dbt-python.yml" : failed to fetch workflow: workflow was not found.
with:
python-version: "3.9"
test-dbt-3-10:
uses: ./.github/workflows/tests-dbt-python.yml
with:
python-version: "3.10"
needs: test-dbt-3-9
test-dbt-3-11:
uses: ./.github/workflows/tests-dbt-python.yml
with:
python-version: "3.11"
needs: test-dbt-3-10
test-dbt-3-12:
uses: ./.github/workflows/tests-dbt-python.yml
with:
python-version: "3.12"
needs: test-dbt-3-11