Skip to content

Make text window skin independent #15 #67

Make text window skin independent #15

Make text window skin independent #15 #67

Workflow file for this run

name: Python unittests
on:
push:
branches:
- '*'
tags-ignore:
- v*
pull_request:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [ 3.7 ]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Test with unittest
run: |
python -m pip install --upgrade pip
pip install flake8 mock
python -m unittest discover
flake8 --max-line-length=120