We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f20b08 commit 1d85783Copy full SHA for 1d85783
.github/workflows/build.yml
@@ -34,11 +34,13 @@ jobs:
34
run: |
35
sudo apt-get update
36
sudo apt-get install -y python3-tk
37
- - name: Install Python deps
+ - name: Install deps
38
39
- if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
40
- python -m pip install --upgrade pip
41
- python -m pip install pytest
+ python -m pip install --upgrade pip
+ python -m pip install pyinstaller mutagen
+ - name: Install project deps (requirements.txt if present)
42
+ if: ${{ hashFiles('requirements.txt') != '' }}
43
+ run: python -m pip install -r requirements.txt
44
- name: Run tests
45
env:
46
PYTHONPATH: .
0 commit comments