Skip to content

Bump golang.org/x/net from 0.24.0 to 0.28.0 #77

Bump golang.org/x/net from 0.24.0 to 0.28.0

Bump golang.org/x/net from 0.24.0 to 0.28.0 #77

Workflow file for this run

name: Go Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19"]
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: make build
- name: Test
run: go test -v ./...