Skip to content

fix?

fix? #1621

Workflow file for this run

name: Windows latest
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Python:
runs-on: windows-latest
strategy:
fail-fast: false # if a particular matrix build fails, don't skip the rest
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
steps:
- uses: actions/checkout@v4
- name: Install packages
run: |
py -${{ matrix.python-version }} -m pip install --upgrade pip
py -${{ matrix.python-version }} -m pip install wheel
py -${{ matrix.python-version }} -m pip install pygame-ce
py -${{ matrix.python-version }} -m pip install .
- name: Run Tests
run: py -${{ matrix.python-version }} -m unittest