Skip to content

add error handling and add optional interval specification #4

add error handling and add optional interval specification

add error handling and add optional interval specification #4

Workflow file for this run

name: ci
on:
pull_request:
push:
branches: [main]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
pg-version: [10, 11, 12, 13, 14, 15]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: install dependencies
run: pip install -r requirements-dev.txt
- name: run tests
run: |
coverage run -m pytest
coverage report
env:
PG_VERSION: ${{ matrix.pg-version }}