Skip to content

cleanup github actions #80

cleanup github actions

cleanup github actions #80

name: Test against various MonetDB versions
on:
push:
branches: [ master ]
pull_request:
schedule:
- cron: '5 0 * * *'
jobs:
run_tests:
runs-on: ubuntu-latest
container: python:3.11
strategy:
fail-fast: false
matrix:
monetdbversion:
- "monetdb/dev-builds:default"
env:
TSTHOSTNAME: "monetdb"
TSTDB: "monetdb"
TSTPASSPHRASE: "monetdb"
TSTCONTROL: "tcp"
services:
monetdb:
image: ${{ matrix.monetdbversion }}
env:
MDB_DAEMON_PASS: monetdb
MDB_DB_ADMIN_PASS: monetdb
ports:
- 50000:50000
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up tests
run: make setup
- name: Run tests
run: make test