Skip to content

AV-97596 | set computed value for replica correctly #745

AV-97596 | set computed value for replica correctly

AV-97596 | set computed value for replica correctly #745

Workflow file for this run

name: Unit Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code repository source code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4 # this action has caching built in
with:
go-version-file: 'go.mod'
cache: false
id: go
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: cache-${{ github.run_id }}
- name: Vet
run: make vet
- name: Test
run: make test