summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-09-22 16:19:56 +0200
committerDominik Holland <dominik.holland@googlemail.com>2021-09-22 16:34:48 +0200
commit72e0ada306477b8deac0a5a8a06d48878e55a233 (patch)
tree3832c538b33984f9d0e5d2e9bb58bf845ccd19a1
parent8ec14b44eb61574c9cf2c0c339f587342f69f874 (diff)
downloadqtivi-qface-72e0ada306477b8deac0a5a8a06d48878e55a233.tar.gz
CI: Fix broken if statement in weekly/release job
This caused to only the minimal dependencies to be tested and not the latest packages.
-rw-r--r--.github/workflows/release.yml2
-rw-r--r--.github/workflows/weekly.yml2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 806640c..4d7293d 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -30,7 +30,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest setuptools wheel twine
- if [ ${{ matrix.dependencies }} == "latest"]; then
+ if [ ${{ matrix.dependencies }} == "latest" ]; then
pip install -r requirements.txt;
else
pip install -r requirements_minimal.txt;
diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
index 9d4f76c..8d33eca 100644
--- a/.github/workflows/weekly.yml
+++ b/.github/workflows/weekly.yml
@@ -30,7 +30,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest setuptools wheel
- if [ ${{ matrix.dependencies }} == "latest"]; then
+ if [ ${{ matrix.dependencies }} == "latest" ]; then
pip install -r requirements.txt;
else
pip install -r requirements_minimal.txt;