Skip to content

Merge pull request #101 from MattExact/postgres-check-all-changes #214

Merge pull request #101 from MattExact/postgres-check-all-changes

Merge pull request #101 from MattExact/postgres-check-all-changes #214

Workflow file for this run

name: ci
on:
push:
branches-ignore:
- main
pull_request:
branches-ignore:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install and configure Poetry
run: |
pip install -U pip poetry
poetry config virtualenvs.create false
- name: Install dependencies
run: poetry install -E all
- name: Check
run: make check