Remove application_name_suffix
configuration parameter
#271
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |