This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
Bump braces from 3.0.2 to 3.0.3 in /reports #2
This file contains 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: CI | |
on: pull_request | |
jobs: | |
dbt-build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install -r requirements.txt | |
pipx install meltano && meltano install | |
- name: Run Extract and Load | |
run: meltano run tap-jaffle-shop target-duckdb | |
- name: Install dbt Dependencies | |
run: dbt deps | |
- name: dbt Build | |
run: dbt build |