From bb7d0a332dd4f7268965400efb2cc52915c5eb4c Mon Sep 17 00:00:00 2001 From: Elias Müller Date: Sat, 9 Jul 2022 19:38:48 +0200 Subject: Run Windows tests on Python 3.8 - 3.10 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6023730..78a5f1a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -60,7 +60,7 @@ jobs: name: 'Windows - Python' strategy: matrix: - python-version: [ '3.10' ] # '3.7', '3.8', '3.9' + python-version: [ '3.8', '3.9', '3.10' ] steps: - uses: actions/checkout@v3 - name: 'Install Python' @@ -75,7 +75,7 @@ jobs: execute python -m pip install --upgrade pip execute python -m pip install wheel execute python -m pip install -r tests/requirements.txt - - name: 'Install libmpv' + - name: 'Provide libmpv' run: | function execute() { echo -e "\033[0;34m$*\033[0m"; "$@"; } -- cgit