Skip to content

initial commit

initial commit #3

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 }}