Skip to content

Improve pytmx Pygame Loader, Unit Test and Cleaner Typing #105

Improve pytmx Pygame Loader, Unit Test and Cleaner Typing

Improve pytmx Pygame Loader, Unit Test and Cleaner Typing #105

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: pip install pygame pyglet
- name: Run Tests
run: python -m unittest discover -s tests/pytmx -p "test_*.py"