This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
Update github actions #5322
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: Docker Compose tests | |
defaults: | |
run: | |
shell: bash --noprofile --norc -eo pipefail {0} | |
on: | |
push: | |
branches: [master, main, force_test, release-*] | |
pull_request: | |
branches: [master, main, force_test, release-*] | |
env: | |
golang-version: '1.15' | |
jobs: | |
build: | |
name: Run | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Set up Go ${{ env.golang-version }} | |
uses: actions/setup-go@v3.5.0 | |
with: | |
go-version: ${{ env.golang-version }} | |
id: go | |
- name: Test docker-compose setup referenced in docs | |
run: ./docker-compose/test.sh | |
- name: Test high-availability docker-compose setup | |
run: ./docker-compose/high-availability/test.sh |