Skip to content

build(deps): Bump golang.org/x/net from 0.0.0-20211118161319-6a13c67c3ce4 to 0.38.0 in the go_modules group across 1 directory #97

build(deps): Bump golang.org/x/net from 0.0.0-20211118161319-6a13c67c3ce4 to 0.38.0 in the go_modules group across 1 directory

build(deps): Bump golang.org/x/net from 0.0.0-20211118161319-6a13c67c3ce4 to 0.38.0 in the go_modules group across 1 directory #97

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
cache: true
- name: Format check
run: test -z "$(gofmt -l .)" || (gofmt -l . && exit 1)
- name: Vet
run: go vet ./...
- name: Test
run: go test ./...
- name: Build
run: go build ./...