Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 #131
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Go | |
on: [push] | |
jobs: | |
build: | |
name: Build on GO ${{matrix.go-version}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
go-version: ["1.14.x", "1.15.x"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Set up Go ${{matrix.go-version}} | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{matrix.go-version}} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Get dependencies | |
run: | | |
go get -v -t -d ./... | |
- name: Go test osx linux | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' | |
run: | | |
go test -v -benchmem -test.bench=".*" -coverprofile=coverage.txt -covermode=atomic ./... | |
- name: Go test windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
go test -v -covermode=atomic ./... |