Skip to content

build(deps): bump golang.org/x/net from 0.27.0 to 0.28.0 (#54) #123

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

build(deps): bump golang.org/x/net from 0.27.0 to 0.28.0 (#54) #123

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.19
uses: actions/setup-go@v5
with:
go-version: 1.19
- 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.50.1
- 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.19
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Test
run: make test