Skip to content

Bump golang.org/x/net from 0.8.0 to 0.17.0 #6

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

Bump golang.org/x/net from 0.8.0 to 0.17.0 #6

Workflow file for this run

name: Go
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.20
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Code checkout
uses: actions/checkout@v1
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
skip-go-installation: true
- name: Code vetting
shell: bash
run: |
go vet ./...
- name: code format check
shell: bash
run: |
if [ "$(gofmt -s -l .)" != "" ]; then exit 1; fi
- name: Run tests
run: |
go test -timeout 30s -v ./...