Skip to content

Implement drag select for widgets #226

Implement drag select for widgets

Implement drag select for widgets #226

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [ master, 'feature-*', '*-support', '*-fix', '*-cleanup' ]
pull_request:
branches: [ master, 'feature-*', '*-support', '*-fix', '*-cleanup' ]
jobs:
build:
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
os: [windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run visual tests with unittests and xvfb
uses: GabrielBB/xvfb-action@v1
with:
run: python -m unittest discover