Skip to content

Updated screen w and h as well as rel_x_pct and rel_y_pct #101

Updated screen w and h as well as rel_x_pct and rel_y_pct

Updated screen w and h as well as rel_x_pct and rel_y_pct #101

Workflow file for this run

name: Python package
on: [push]
jobs:
build-and-publish:
runs-on: windows-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m ensurepip --user
python -m pip install --upgrade pip --user
python -m pip install .[dev]
- name: Test with tox
run: tox -p auto -o