Skip to content

Merge pull request #179 from JaskRendix/toml #47

Merge pull request #179 from JaskRendix/toml

Merge pull request #179 from JaskRendix/toml #47

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.7
- 3.8
- 3.9
dependencies:
- pygame pyglet
- pygame
- pyglet
- "null"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
if: ${{ matrix.dependencies != 'null' }}
run: pip install ${{ matrix.dependencies }}
- name: Run Tests
run: python -m unittest tests/pytmx/test_pytmx.py