Skip to content

chore: add race checker to "go test" in github action (#31) #122

chore: add race checker to "go test" in github action (#31)

chore: add race checker to "go test" in github action (#31) #122

Workflow file for this run

# Copyright (c) HashiCorp, Inc.
name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
strategy:
fail-fast: true
matrix:
go: ["1.21", "1.20", "1.19"]
platform: [ubuntu-latest] # can not run in windows OS
runs-on: ${{ matrix.platform }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: go mod package cache
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
- name: Build
run: |
go build ./...
- name: Test
run: |
go test ./... -race
- name: Coverage
run: |
make coverage-diff
- name: govulncheck
uses: golang/govulncheck-action@7da72f730e37eeaad891fcff0a532d27ed737cd4 # v1