31 lines
465 B
YAML
31 lines
465 B
YAML
os: linux
|
|
language: python
|
|
dist: focal
|
|
python:
|
|
- '3.10'
|
|
- '3.11'
|
|
- '3.12'
|
|
services:
|
|
- postgresql
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libgdal-dev
|
|
- postgresql-12-postgis-3
|
|
env:
|
|
global:
|
|
- PGPORT=5432
|
|
- UMAP_SETTINGS=umap/tests/settings.py
|
|
install:
|
|
- make develop
|
|
script: make test
|
|
notifications:
|
|
irc:
|
|
channels:
|
|
- 'irc.libera.chat#umap'
|
|
on_success: change
|
|
on_failure: always
|
|
email: false
|
|
branches:
|
|
only:
|
|
- master
|