Skip to content

Add account_id parameter, update README #49

Add account_id parameter, update README

Add account_id parameter, update README #49

Workflow file for this run

name: test
on:
pull_request:
push:
jobs:
test:
name: Test package
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r tests/requirements.txt
- name: Run tests
run: python -m pytest --record-mode=none