summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml20
1 files changed, 13 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e4c264ed5..c9b6a023e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -89,12 +89,18 @@ jobs:
strategy:
fail-fast: false
matrix:
- image:
- - archlinux-webkit
- - archlinux-webengine
- - archlinux-webengine-qt6
- - archlinux-webengine-unstable
- # - archlinux-webengine-unstable-qt6 # FIXME:qt6.5 activate
+ include:
+ - testenv: py
+ image: archlinux-webkit
+ - testenv: py
+ image: archlinux-webengine
+ - testenv: py-qt6
+ image: archlinux-webengine-qt6
+ - testenv: py
+ image: archlinux-webengine-unstable
+ args: ""
+ # - testenv: py
+ # image: archlinux-webengine-unstable-qt6 # FIXME:qt6.5 activate
container:
image: "qutebrowser/ci:${{ matrix.image }}"
env:
@@ -112,7 +118,7 @@ jobs:
- name: Set up problem matchers
run: "python scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
- name: Run tox
- run: dbus-run-session tox -e py
+ run: "dbus-run-session -- tox -e ${{ matrix.testenv }} -- ${{ matrix.args }}"
tests:
if: "!contains(github.event.head_commit.message, '[ci skip]')"