Skip to content

Merge pull request #64 from IRLL/staging #121

Merge pull request #64 from IRLL/staging

Merge pull request #64 from IRLL/staging #121

name: Pytest examples
on: ["push"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
env:
SDL_VIDEODRIVER: "dummy" # for PyGame render https://stackoverflow.com/questions/15933493/pygame-error-no-available-video-device
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install package dependencies
run: |
python -m pip install --upgrade pip
pip install .
- name: Install dev and example dependencies
run: |
pip install -r requirements-dev.txt
pip install -r requirements-examples.txt
- name: Test with pytest
run: |
pytest tests/end_to_end