Skip to content

Commit

Permalink
Re-configure uv (#157)
Browse files Browse the repository at this point in the history
that worked 馃
  • Loading branch information
charliermarsh committed Apr 21, 2024
1 parent d80a931 commit bac774f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pr_to_master.yml
Expand Up @@ -13,11 +13,14 @@ jobs:
steps:
- name: Check out
uses: actions/checkout@master

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: python basics
run: make build

- name: build pipeline
run: make run
run: make run
8 changes: 4 additions & 4 deletions Makefile
@@ -1,9 +1,9 @@
install-uv:
sudo pip install uv
sudo uv pip install --system -r requirements.txt
pip install uv
uv pip install --system -r requirements.txt

build: install-uv
cd transform && sudo dbt deps
cd transform && dbt deps
cd evidence && npm install
mkdir -p data/data_catalog/raw
mkdir -p data/data_catalog/prep
Expand All @@ -12,7 +12,7 @@ build: install-uv

run:
cd dlt && python3 nba_pipeline.py
cd transform && sudo dbt build
cd transform && dbt build
cd evidence && npm run sources

dev:
Expand Down

0 comments on commit bac774f

Please sign in to comment.