Skip to content

Replace default null variables with empty object to fix 400 error fro… #17

Replace default null variables with empty object to fix 400 error fro…

Replace default null variables with empty object to fix 400 error fro… #17

Workflow file for this run

name: continuous-integration
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
uses: py-actions/py-dependency-install@v3
- name: Run Tests
run: nosetests -a '!broken'