Skip to content

Trying to fix testing #4

Trying to fix testing

Trying to fix testing #4

Workflow file for this run

name: test
on:
push:
branches:
- 'main'
pull_request:
env:
SRC_DIR: zxlive
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.9 ]
env:
DISPLAY: ':99.0'
steps:
- uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- uses: tlambert03/setup-qt-libs@v1
run:
pip install ".[test]"
- name: pytest
run:
pytest