Skip to content

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 (#17) #81

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 (#17)

chore(deps): bump golang.org/x/net from 0.37.0 to 0.38.0 (#17) #81

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Build & Test
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
run: make build
- name: Test
run: make test