Skip to content

[pre-commit.ci] pre-commit autoupdate #11

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #11

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, 16]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- 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 }}