Skip to content

Fix github action test run for PyQt6 #3

Fix github action test run for PyQt6

Fix github action test run for PyQt6 #3

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: "basic_games"
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- uses: abatilo/actions-poetry@v2
- name: Install dependencies
run: |
cd basic_games
poetry --no-root install
- name: Run tests
uses: GabrielBB/xvfb-action@v1
with:
run: poetry run poe test
working-directory: basic_games