Skip to content

Bump golang.org/x/net from 0.14.0 to 0.17.0 #1394

Bump golang.org/x/net from 0.14.0 to 0.17.0

Bump golang.org/x/net from 0.14.0 to 0.17.0 #1394

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Print build information
run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}, os: ${{ matrix.os }}"
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: build
run: make build-server
- name: test
run: make test