Skip to content

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#44) #99

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#44)

Bump golang.org/x/net from 0.17.0 to 0.23.0 (#44) #99

Workflow file for this run

name: Go
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Build binaries
run: |
make
- name: Run unit tests
run: |
make check
tidy:
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Check tidiness
run: |
./ci/check-tidy.sh
golangci:
name: lint
runs-on: [ubuntu-latest]
steps:
- name: Check-out code
uses: actions/checkout@v3
- name: Set up Go using version from go.mod
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version:
# we always use the latest patch version. Keep this version the same with the one in the Makefile!!
version: v1.53
# Optional: show only new issues if it's a pull request. The default value is `false`.
only-new-issues: false