Skip to content

build

build #39

Workflow file for this run

---
name: build
on: push
jobs:
tox:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python:
- env: py38
version: '3.8'
- env: py310
version: '3.10'
- env: py311
version: '3.11'
httplib:
- default
- fido
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python.version }}
- run: pip install tox
- run: tox -e ${{ matrix.python.env }}-${{ matrix.httplib }}
misc:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
tox:
- mypy
- pre-commit
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- run: pip install tox
- run: tox -e ${{ matrix.tox }}