summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-07-03 18:47:55 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-07-03 18:56:54 +0200
commit189a54d4d638cb0e09f5edb319ccc0c300e2cee7 (patch)
tree309fc110d9791e066033c800470a26f8deedf548
parentf916965cd57ef5d373758e64bee07548e0d63be8 (diff)
downloadqutebrowser-189a54d4d638cb0e09f5edb319ccc0c300e2cee7.tar.gz
qutebrowser-189a54d4d638cb0e09f5edb319ccc0c300e2cee7.zip
ci: Fix running problemmatcher script on Windows
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index cdd53f333..0a69eee1a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -36,7 +36,7 @@ jobs:
node-version: '12.x'
if: "matrix.testenv == 'eslint'"
- name: Set up problem matchers
- run: "python3 scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
+ run: "python scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
- name: Install dependencies
run: |
[[ ${{ matrix.testenv }} == eslint ]] && npm install -g eslint
@@ -69,7 +69,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up problem matchers
- run: "python3 scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
+ run: "python scripts/dev/ci/problemmatchers.py py38 ${{ runner.temp }}"
- run: tox -e py38
tests:
@@ -145,7 +145,7 @@ jobs:
with:
python-version: "${{ matrix.python }}"
- name: Set up problem matchers
- run: "python3 scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
+ run: "python scripts/dev/ci/problemmatchers.py ${{ matrix.testenv }} ${{ runner.temp }}"
- name: Install apt dependencies
run: sudo apt-get install --no-install-recommends libyaml-dev libegl1-mesa libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0
if: "startsWith(matrix.os, 'ubuntu-')"