Skip to content

Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 #22

Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0

Bump gopkg.in/yaml.v3 from 3.0.0-20200615113413-eeeca48fe776 to 3.0.0 #22

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
stable: 'false'
go-version: '1.18.0-beta1'
- name: Build
working-directory: test-suites
run: go build -v ./...
- name: Test
working-directory: test-suites
run: |
if [[ -n "$(find . -name '*.go' | xargs gofmt -d)" ]]; then echo "gofmt check failed"; exit 1; fi
go vet ./...
go test -v ./...