Skip to content

Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.33.0 #48

Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.33.0

Bump golang.org/x/net from 0.0.0-20210805182204-aaa1db679c0d to 0.33.0 #48

Workflow file for this run

name: Go
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: v1.40.1
args: --timeout=2m
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Checkout
uses: actions/checkout@v2
- uses: actions/cache@v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: go test
run: go test -timeout 60s ./...