Skip to content

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0 #231

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0

build(deps): bump golang.org/x/net from 0.16.0 to 0.17.0 #231

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
go-version: [~1.18]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: "on"
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Download Go modules
run: go mod tidy
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...