Skip to content

Update readme, addressing #27 and #28 #53

Update readme, addressing #27 and #28

Update readme, addressing #27 and #28 #53

Workflow file for this run

name: main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
branches: [ main ]
types: [ created ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- run: tox -e flake8
typecheck:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- run: tox -e mypy
test:
needs: lint
runs-on: ${{ matrix.operating-system }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest, macos-latest]
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 dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Test
run: tox