Skip to content

Update golang.org/x/net dependency to address security vulnerability … #28

Update golang.org/x/net dependency to address security vulnerability …

Update golang.org/x/net dependency to address security vulnerability … #28

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: [1.16]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: go test -v ./...