Skip to content

Merge pull request #8 from juev/dependabot/go_modules/golang.org/x/ne… #26

Merge pull request #8 from juev/dependabot/go_modules/golang.org/x/ne…

Merge pull request #8 from juev/dependabot/go_modules/golang.org/x/ne… #26

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
-
name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '>=1.19.0'
check-latest: true
-
name: Install dependencies
run: |
go version
go install golang.org/x/lint/golint@latest
-
name: Run build
run: go build .
-
name: Run vet & lint
run: |
go vet .
golint .