Skip to content

Bump golang.org/x/net from 0.30.0 to 0.31.0 #209

Bump golang.org/x/net from 0.30.0 to 0.31.0

Bump golang.org/x/net from 0.30.0 to 0.31.0 #209

Workflow file for this run

name: WSGet
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go 1.22
uses: actions/setup-go@v5
with:
go-version: "1.22.x"
- name: Display Go version
run: go version
- name: Code Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.60.1
- name: Build
run: go build -v ./...
- name: Test
run: go test -coverprofile=coverage.out -covermode=atomic -v -race ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}