Skip to content

Bump golang.org/x/net from 0.7.0 to 0.17.0 #71

Bump golang.org/x/net from 0.7.0 to 0.17.0

Bump golang.org/x/net from 0.7.0 to 0.17.0 #71

Workflow file for this run

name: Go Build
on:
push:
branches: ["master"]
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.14
id: go
- name: Check out code
uses: actions/checkout@v3
- name: Go vet
run: go vet
- name: Build
run: make all
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
only-new-issues: true