Fix python dependency detection
This commit is contained in:
parent
33631f4f2d
commit
8c8cabfda1
1 changed files with 4 additions and 4 deletions
|
@ -13,13 +13,13 @@ jobs:
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
cache: 'pip'
|
cache-dependency-path: '**/requirements.prod.txt'
|
||||||
- name: Install needed python modules
|
- name: Install dependencies
|
||||||
working-directory: core
|
working-directory: core
|
||||||
run: cd core && pip3 install -r requirements.prod.txt
|
run: pip3 install -r requirements.prod.txt
|
||||||
- name: Run django tests
|
- name: Run django tests
|
||||||
working-directory: core
|
working-directory: core
|
||||||
run: python3 -m manage.py test
|
run: python3 manage.py test
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
needs: [test]
|
needs: [test]
|
||||||
|
|
Loading…
Reference in a new issue