Skip to content

Commit

Permalink
dbt: Add CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Nov 11, 2024
1 parent 088ed54 commit 9c9da8e
Show file tree
Hide file tree
Showing 2 changed files with 75 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ updates:

# Frameworks.

- directory: "/framework/dbt/basic"
package-ecosystem: "pip"
schedule:
interval: "daily"

- directory: "/framework/gradio"
package-ecosystem: "pip"
schedule:
Expand Down
70 changes: 70 additions & 0 deletions .github/workflows/framework-dbt.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: dbt

on:
pull_request:
branches: ~
paths:
- '.github/workflows/framework-dbt.yml'
- 'framework/dbt/**'
- '/requirements.txt'
push:
branches: [ main ]
paths:
- '.github/workflows/framework-dbt.yml'
- 'framework/dbt/**'
- '/requirements.txt'

# Allow job to be triggered manually.
workflow_dispatch:

# Run job each night after CrateDB nightly has been published.
schedule:
- cron: '0 3 * * *'

# Cancel in-progress jobs when pushing to the same branch.
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}

jobs:
test:
name: "
Python: ${{ matrix.python-version }}
CrateDB: ${{ matrix.cratedb-version }}
on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ 'ubuntu-latest' ]
python-version: [ '3.9', '3.11' ]
cratedb-version: [ 'nightly' ]

services:
cratedb:
image: crate/crate:${{ matrix.cratedb-version }}
ports:
- 4200:4200
- 5432:5432
env:
CRATE_HEAP_SIZE: 4g

steps:

- name: Acquire sources
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: x64
cache: 'pip'
cache-dependency-path: |
framework/dbt/basic/requirements.txt
- name: Validate framework/dbt/basic
run: |
cd framework/dbt/basic
pip install -r requirements.txt
dbt build

0 comments on commit 9c9da8e

Please sign in to comment.