Skip to content

Testing GA

Testing GA #263

Workflow file for this run

name: test
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
test:
strategy:
matrix:
containers: [ 1.21.7 ]
runs-on: ubuntu-latest
container: golang:${{ matrix.containers }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- name: Download Go modules
run: go mod tidy && go mod download
- name: Clear module cache
run: go clean -modcache
- name: Unit Tests
run: go test -v -race -timeout=60s ./...