Skip to content

Commit

Permalink
fix(ci): using venv to ensure not library conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Feb 11, 2025
1 parent 2f4bed2 commit 0d7d903
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cli-ci-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,12 @@ jobs:
with:
python-version: '3.13'

- name: Create virual env
run: python -m venv venv

- name: Install dependencies
run: |
source venv/bin/activate
python -m pip install --upgrade pip
pip install -r requirements.txt
Expand All @@ -52,4 +56,7 @@ jobs:
echo "$CREDENTIALS_JSON" > credentials.json
- name: Run the project
run: python gyft.py -DO
run: |
source venv/bin/activate
python gyft.py -DO

0 comments on commit 0d7d903

Please sign in to comment.