Skip to content

Commit

Permalink
tested if the uv needed to be activated
Browse files Browse the repository at this point in the history
  • Loading branch information
CommanderStorm committed Apr 28, 2024
1 parent 1ab6bb9 commit 22bded1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/data-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Install dependencies
run: |
uv venv
source .venv/bin/activate
uv pip install -r data/requirements.txt -r requirements-dev.txt
- run: pytest data
#type-check:
Expand All @@ -40,6 +41,7 @@ jobs:
# - name: Install dependencies
# run: |
# uv venv
# source .venv/bin/activate
# uv pip install -r data/requirements.txt -r requirements-dev.txt
# - name: Run mypy
# run: mypy --strict data
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- name: Install python dependencies
run: |
uv venv
source .venv/bin/activate
uv pip install -r data/requirements.txt -r requirements-dev.txt
- name: Run pre-commit
continue-on-error: ${{ github.ref == 'refs/heads/main' }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- name: Install python dependencies
run: |
uv venv
source .venv/bin/activate
uv pip install -r data/requirements.txt -r requirements-dev.txt
- name: Download data
continue-on-error: true # a PR deleting all data will be created if this fails => fail obvious
Expand Down

0 comments on commit 22bded1

Please sign in to comment.