Skip to content

Bump golang.org/x/net from 0.0.0-20211209124913-491a49abca63 to 0.23.0 #154

Bump golang.org/x/net from 0.0.0-20211209124913-491a49abca63 to 0.23.0

Bump golang.org/x/net from 0.0.0-20211209124913-491a49abca63 to 0.23.0 #154

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: 1.17
id: go
- name: Check out code
uses: actions/checkout@v1
- name: Check gofmt
run: test -z "$(gofmt -s -d .)"
- name: Build
run: make build
- name: Test
run: make test-unit