Skip to content

Make API key header configurable #63

Make API key header configurable

Make API key header configurable #63

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
container:
# INFO: python 2 is no longer supported in
# actions/setup-python, use python docker image instead
image: python:${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Install requirements (py ${{ matrix.python-version }})
run: |
pip install -e ".[testing]"
- name: Run all tests (py ${{ matrix.python-version }})
run: python -m unittest discover