Skip to content

Bump golang.org/x/net from 0.24.0 to 0.25.0 #1474

Bump golang.org/x/net from 0.24.0 to 0.25.0

Bump golang.org/x/net from 0.24.0 to 0.25.0 #1474

Workflow file for this run

name: Integration Test
on:
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
jobs:
linux-headless:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Build
run: |
env CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build .
tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Run Go tests
run: |
go test ./... -v
staticcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Run static checks
run: |
go install honnef.co/go/tools/cmd/staticcheck@latest
{ ~/go/bin/staticcheck ./... ; }