Skip to content

build(deps): bump golang.org/x/net from 0.28.0 to 0.29.0 #132

build(deps): bump golang.org/x/net from 0.28.0 to 0.29.0

build(deps): bump golang.org/x/net from 0.28.0 to 0.29.0 #132

Workflow file for this run

name: Test
on:
pull_request: {}
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Install golangci-lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sudo sh -s -- -b /usr/local/bin v1.60.3
- name: Lint
run: make lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go 1.20
uses: actions/setup-go@v5
with:
go-version: '1.20'
- name: Test
run: make test