Skip to content

Handle properties that throw KeyError #40

Handle properties that throw KeyError

Handle properties that throw KeyError #40

Workflow file for this run

name: Build and Test
on:
push:
branches: [master]
tags:
pull_request:
jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: python -m pip install tox
- name: Run ${{ matrix.python-version }} tox
run: tox -e py