Skip to content

Multi region support #112

Multi region support

Multi region support #112

Workflow file for this run

name: Unit Tests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
name: go test
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
os: [ubuntu-latest] # other options: macos-latest, windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- run: go test -race -v ./...