Skip to content

Removed example board with image #27

Removed example board with image

Removed example board with image #27

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- '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
python -m pip install bs4
- name: Run tests
run: |
export QT_QPA_PLATFORM=offscreen
python -m unittest discover tests
- name: Checking package installation
run: python setup.py install