Fix: Descend into nullable objects and arrays #292
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# libcove doesn't support Windows. | |
# https://github.com/OpenDataServices/lib-cove/issues/53 | |
# We also only use Linux servers, so don't test on Mac | |
os: [ubuntu-22.04] | |
python-version: [ 3.8, 3.9, "3.10", "3.11" ] | |
jsonref-version: ["==0.3", ">1"] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
pip install -r requirements_dev.txt | |
pip install . | |
pip install 'jsonref${{ matrix.jsonref-version }}' | |
- name: Test | |
run: py.test tests/ |