Update changelog for v0.8.12 #875
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: 1 11 * * 0 | |
jobs: | |
acceptance: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
cache: true | |
- uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.8.2 | |
- name: Docker Compose Up | |
run: docker compose up --build -d | |
- name: Configure hosts file | |
run: echo "127.0.0.1 materialized frontegg cloud" | sudo tee -a /etc/hosts | |
- name: make testacc | |
run: make testacc | |
env: | |
MZ_ENDPOINT: http://localhost:3000 | |
MZ_CLOUD_ENDPOINT: http://localhost:3001 | |
MZ_PASSWORD: mzp_1b2a3c4d5e6f7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b | |
MZ_SSLMODE: disable | |
- name: Docker Compose Down | |
run: docker compose down |