diff options
author | Elias Müller <elias.mr1@gmail.com> | 2022-07-09 19:38:48 +0200 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2022-07-11 12:44:47 +0200 |
commit | bb7d0a332dd4f7268965400efb2cc52915c5eb4c (patch) | |
tree | 46fe643edd2f14955da21fe675857de0de801251 /.github | |
parent | 976b7e685e70b071f99a09be9bab26c114ee618a (diff) | |
download | python-mpv-bb7d0a332dd4f7268965400efb2cc52915c5eb4c.tar.gz python-mpv-bb7d0a332dd4f7268965400efb2cc52915c5eb4c.tar.bz2 python-mpv-bb7d0a332dd4f7268965400efb2cc52915c5eb4c.zip |
Run Windows tests on Python 3.8 - 3.10
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files 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"; "$@"; } |