Skip to content

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#44) #187

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#44)

Bump golang.org/x/net from 0.10.0 to 0.17.0 (#44) #187

Workflow file for this run

on: [push, pull_request]
name: Go
jobs:
linux_test:
name: Test Linux Integration
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Checkout code
uses: actions/checkout@v4
- name: Download dependencies
run: go mod download
- name: Go Vet
run: go vet ./...
- name: Fuzz build
run: go build -tags=gofuzz ./...
- name: Test Integration
run: sudo -E env PATH=$PATH go test -v -tags=integration ./...