summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-06-30 17:53:07 +0200
committerDominik Holland <dominik.holland@googlemail.com>2022-01-27 13:50:04 +0100
commitc1b23bc5d23e62a8c41be646d848df97d2054b7c (patch)
treea43993e6e64fe0e55177ea8de582e14ce7c04653
parent70635e49fe1bb5df580a45e310f04982fd13838c (diff)
downloadqtivi-qface-c1b23bc5d23e62a8c41be646d848df97d2054b7c.tar.gz
CI: Add a weekly job which ensures the package is still building
-rw-r--r--.github/workflows/weekly.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml
new file mode 100644
index 0000000..08dfe61
--- /dev/null
+++ b/.github/workflows/weekly.yml
@@ -0,0 +1,37 @@
+# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
+# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
+
+name: Weekly Check
+
+on:
+ schedule:
+ - cron: '0 1 * * 1'
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ python-version: [3.7, 3.8, 3.9]
+ dependencies: [minimal, latest]
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v2
+ with:
+ python-version: ${{ matrix.python-version }}
+ - name: Install dependencies
+ run: |
+ python -m pip install --upgrade pip
+ python -m pip install pytest setuptools wheel
+ if [ ${{ matrix.dependencies }} == "latest"]; then
+ pip install -r requirements.txt;
+ else
+ pip install -r requirements_minimal.txt;
+ fi
+ - name: Test with pytest
+ run: |
+ python -m pytest