Skip to content

Fixed python version #6

Fixed python version

Fixed python version #6

Workflow file for this run

name: Tests
on:
push:
branches:
- master
- 'dev-**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Run tests
run: |
export QT_QPA_PLATFORM=offscreen
python -m unittest discover tests -v
- name: Checking package installation
run: python setup.py install