Skip to content

example: dont return none for str type #43

example: dont return none for str type

example: dont return none for str type #43

Workflow file for this run

name: Run Tests
on:
push:
branches: ['*']
pull_request:
branches: ['*']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11"]
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 packages
run: |
python -m pip install --upgrade pip
pip install '.[testing,optional]'
- name: Run mypy
run: |
mypy --install-types --non-interactive ./autotui
- name: Run pytest
run: |
pytest
- name: Run flake8
run: |
flake8 ./autotui