Skip to content

✅ test: add Result testing case #40

✅ test: add Result testing case

✅ test: add Result testing case #40

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
go-version: [1.18,1.19]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Testing utils
run: |
export GPATH=`$(pwd)`
export PATH=$PATH:$GOPATH/bin
go test -v -race ./...