Skip to content

Bump to golang.org/x/net v0.23.0 #16

Bump to golang.org/x/net v0.23.0

Bump to golang.org/x/net v0.23.0 #16

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
name: Verify Build
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
env:
GOPATH: /opt/go
PATH: /opt/go/bin:/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin
GO_VER: 1.21.9
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/setup-go@v3
name: Install Go
with:
go-version: ${{ env.GO_VER }}
- uses: actions/checkout@v3
name: Checkout Fabric Code
- run: ci/install-tools.sh
name: Install Tools
- run: ci/lint.sh
name: Vet and lint
- run: go test -race ./...
name: Run tests