Skip to content

chore(deps): bump golang.org/x/net from 0.24.0 to 0.25.0 #80

chore(deps): bump golang.org/x/net from 0.24.0 to 0.25.0

chore(deps): bump golang.org/x/net from 0.24.0 to 0.25.0 #80

Workflow file for this run

name: CI
on: pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
cache: false
- name: Build
run: go build -v ./...
- name: Run linters
uses: golangci/golangci-lint-action@v3
with:
version: latest
skip-pkg-cache: true
skip-build-cache: true
- name: Run tests
run: go test -v ./...