Skip to content

Github Actions, Cache pip dependencies #297

Github Actions, Cache pip dependencies

Github Actions, Cache pip dependencies #297

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
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