Skip to content

Fix for windows CI, versioning update and added dependabot #1468

Fix for windows CI, versioning update and added dependabot

Fix for windows CI, versioning update and added dependabot #1468

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:
matrix:
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
steps:
- uses: actions/checkout@v3.5.2
- name: Install packages
run: |
py -${{ matrix.python-version }} -m pip install --upgrade pip
py -${{ matrix.python-version }} -m pip install pygame-ce
py -${{ matrix.python-version }} -m setup install
- name: Run Tests
run: py -${{ matrix.python-version }} -m unittest