Bump gopkg.in/yaml.v3 from 3.0.0-20200121175148-a6ecf24a6d71 to 3.0.0 #150
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: Hiera Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test Linux | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.13 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.13 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Set up GolangCI-Lint | |
run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- latest | |
- name: Lint | |
run: ./bin/golangci-lint run ./... | |
- name: Test | |
run: go test -tags test -v ./... | |
test-windows: | |
name: Test Windows | |
runs-on: windows-latest | |
steps: | |
- name: Set up Go 1.13 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.13 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v1 | |
- name: Test | |
run: go test -tags test -v ./... |