Skip to content

Grant Id Migration #325

Grant Id Migration

Grant Id Migration #325

Workflow file for this run

name: acceptance
on:
pull_request:
paths:
- pkg/**
- main.go
- go.mod
schedule:
- cron: 0 11 * * 0
jobs:
acceptance:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: true
- name: Docker Compose Up
run: docker compose up --build -d
- name: make testacc
run: make testacc
env:
MZ_HOST: localhost
MZ_USER: mz_system
MZ_SSLMODE: disable
MZ_PORT: 6877
- name: Docker Compose Down
run: docker compose down