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>2022-01-27 13:50:04 +0100
commit8b267658200e087722eb9d70c31aec0d4be04a86 (patch)
tree3832c538b33984f9d0e5d2e9bb58bf845ccd19a1
parent69f9ff2d30808f493075d8fca23c921cc00d36e4 (diff)
downloadqtivi-qface-8b267658200e087722eb9d70c31aec0d4be04a86.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;