Skip to content

Develop (#5)

Develop (#5) #4

Workflow file for this run

name: build and test
on:
push:
branches:
- master
- develop
jobs:
buildandtest:
name: Build and Test on Go ${{matrix.go}}
runs-on: ubuntu-latest
strategy:
matrix:
go: [ 'stable', 'oldstable' ]
steps:
- name: Set up Go ${{matrix.go}}
uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # pin@v3
with:
go-version: ${{matrix.go}}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # pin@v3
- name: Test
run: go test -v -p=1 -race ./...