Skip to content

Bump golang.org/x/net from 0.21.0 to 0.23.0 #1641

Bump golang.org/x/net from 0.21.0 to 0.23.0

Bump golang.org/x/net from 0.21.0 to 0.23.0 #1641

Workflow file for this run

name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21.0
uses: actions/setup-go@v2
with:
go-version: 1.21.0
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
make envtest
- name: Build
run: go build -v ./...
- name: Test
run: make test
- name: Lint
run: make lint
- name: Send coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov