Skip to content

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 #109

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0

chore(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 #109

Workflow file for this run

name: ci
on:
pull_request:
branches: [ main ]
# Ensure this workflow can be run manually from the Actions tab.
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Build binaries
run: make -f .github/Makefile xcompile
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: go test ./...
linters:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout 5m0s