Skip to content

Update module github.com/stretchr/testify to v1.9.0 #193

Update module github.com/stretchr/testify to v1.9.0

Update module github.com/stretchr/testify to v1.9.0 #193

Workflow file for this run

name: Build
on:
push:
paths:
- .github/workflows/build.yml
- "**.go"
- go.sum
- go.mod
pull_request:
paths:
- .github/workflows/build.yml
- "**.go"
- go.sum
- go.mod
workflow_dispatch:
branches: ["*"]
env:
GO_VERSION: 1.17
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
timeout-minutes: 2
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
fail-fast: false
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ env.GO_VERSION }}-
- name: Build
run: go build -v .
test:
name: Test
runs-on: ${{ matrix.os }}
timeout-minutes: 5
strategy:
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
fail-fast: false
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ env.GO_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Cache
uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ env.GO_VERSION }}-
- name: Test
run: go test ./... -race -cover -v