Skip to content

Commit

Permalink
start a venv
Browse files Browse the repository at this point in the history
  • Loading branch information
LTDakin authored Aug 29, 2024
1 parent a6510a7 commit af0bcd1
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/django-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,14 @@ jobs:
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
- name: Install Poetry
run: python -m pip install --user poetry
- name: Set up package manager and enviorment
run: |
python -m pip install --user poetry
python -m venv venv
source venv/bin/activate
- name: Install Dependencies
run: poetry install --no-interaction --no-root
run: |
poetry install --no-interaction --no-root
- name: Run Tests
run: python manage.py test
run: |
python manage.py test

0 comments on commit af0bcd1

Please sign in to comment.