chore: adopt testcontainers-go for Postgres, MySQL, MSSQL and MongoDB #2157
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
on: | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- 'postgres/**' | |
pull_request: | |
paths: | |
- 'postgres/**' | |
name: "Tests Postgres" | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: | |
- 1.20.x | |
- 1.21.x | |
- 1.22.x | |
steps: | |
- name: Fetch Repository | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '${{ matrix.go-version }}' | |
- name: Run Test | |
env: | |
TEST_POSTGRES_IMAGE: "docker.io/postgres:16-alpine" | |
run: cd ./postgres && go test ./... -v -race |