Skip to content

Simplify definition of CI matrices #1075

Simplify definition of CI matrices

Simplify definition of CI matrices #1075

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- "main"
schedule:
- cron: "0 0 * * *"
pull_request:
types: [opened, synchronize, reopened]
jobs:
live:
runs-on: ubuntu-latest
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
name: live
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: pip install tox
- run: sudo apt-get update && sudo apt-get install libpq-dev
- run: tox -e live