Merge pull request #421 from HewlettPackard/OV9.1_Validation #517
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: | |
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@v1 | |
with: | |
go-version: 1.18 | |
- name: Install Go Overalls | |
run: go install github.com/mattn/goveralls@latest | |
- name: Install Go Lint | |
run: go install golang.org/x/lint/golint@latest | |
- name: Running Test Script | |
run: make test |