Skip to content

Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.13.0 #263

Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.13.0

Bump golang.org/x/net from 0.0.0-20210405180319-a5a99cb37ef4 to 0.13.0 #263

Workflow file for this run

name: PR
on:
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
args: --timeout 5m
only-new-issues: true
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: "1.x"
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- run: make test
- name: uncommitted changes?
if: ${{ always() }}
run: git diff --exit-code --stat