Skip to content

Bump golang.org/x/net from 0.26.0 to 0.28.0 in the gomod group across 1 directory #69

Bump golang.org/x/net from 0.26.0 to 0.28.0 in the gomod group across 1 directory

Bump golang.org/x/net from 0.26.0 to 0.28.0 in the gomod group across 1 directory #69

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
with:
version: latest
only-new-issues: true