8000 Remove dbt 1.7 from testing and add dbt 1.10 · memiiso/opendbt@cb05f9f · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

And add dbt 1.10 to testing list #420

And add dbt 1.10 to testing list

And add dbt 1.10 to testing list #420

Workflow file for this run

name: Build and Test
on:
workflow_dispatch:
push:
branches: [ main ]
paths-ignore:
- '.idea/**'
- '.run/**'
pull_request:
branches: [ main ]
paths-ignore:
- '.idea/**'
- '.run/**'
jobs:
test-dbt-1-8:
uses: ./.github/workflows/tests-dbt-version.yml
with:
dbt-version: "1.8"
needs: test-dbt-1-9
test-dbt-1-9:
uses: ./.github/workflows/tests-dbt-version.yml
with:
dbt-version: "1.9"
needs: test-dbt-1-10
test-dbt-1-10:
uses: ./.github/workflows/tests-dbt-version.yml
with:
dbt-version: "1.10"
0