Skip to content

Commit

Permalink
Fix borked syntax in build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower committed Mar 16, 2024
1 parent 8dbe066 commit 554e540
Showing 1 changed file with 16 additions and 17 deletions.
33 changes: 16 additions & 17 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,19 @@ on:

jobs:
build:
- name: Load data into MotherDuck
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Python
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11.x"
- name: Install Python dependencies
run: |
python3 -m pip install uv
uv pip install --system -r requirements.txt
- name: Run Transformations
run: |
dbt deps
dbt build --target prod
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Python
uses: actions/setup-python@v5.0.0
with:
python-version: "3.11.x"
- name: Install Python dependencies
run: |
python3 -m pip install uv
uv pip install --system -r requirements.txt
- name: Run Transformations
run: |
dbt deps
dbt build --target prod

0 comments on commit 554e540

Please sign in to comment.