Skip to content

Bump golang.org/x/net from 0.0.0-20221012135044-0b7e1fb9d458 to 0.38.0 #5

Bump golang.org/x/net from 0.0.0-20221012135044-0b7e1fb9d458 to 0.38.0

Bump golang.org/x/net from 0.0.0-20221012135044-0b7e1fb9d458 to 0.38.0 #5

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@0caeaed6fd66a828038c2da3c0f662a42862658f # v1.1.3
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Build
run: make build
- name: golangci-lint
uses: golangci/golangci-lint-action@5c56cd6c9dc07901af25baab6f2b0d9f3b7c3018 # v2.5.2
env:
GOROOT: ""
- name: Test
run: make test
- name: Integration test
run: make it
- uses: codecov/codecov-action@29386c70ef20e286228c72b668a06fd0e8399192 # v1.5.2
with:
file: ./cover.out
flags: unittests