Skip to content

SRE-3982 Moving to self-hosted runners #5

SRE-3982 Moving to self-hosted runners

SRE-3982 Moving to self-hosted runners #5

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
name: unit test
jobs:
test:
runs-on: textnow
strategy:
matrix:
go: [ '1.18', '1.19' ]
name: Go ${{ matrix.go }} test
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
- name: test
run: go test -v -race ./...