Skip to content

build(deps): bump golang.org/x/net from 0.0.0-20220325170049-de3da57026de to 0.23.0 #75

build(deps): bump golang.org/x/net from 0.0.0-20220325170049-de3da57026de to 0.23.0

build(deps): bump golang.org/x/net from 0.0.0-20220325170049-de3da57026de to 0.23.0 #75

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '^1.18'
- name: Install goimports
run: go install golang.org/x/tools/cmd/goimports@latest
- name: Checkout code
uses: actions/checkout@v3
- run: goimports -w .
- run: go mod tidy
# If there are any diffs from goimports or go mod tidy, fail.
- name: Verify no changes from goimports and go mod tidy
run: |
if [ -n "$(git status --porcelain)" ]; then
exit 1
fi
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: '^1.18'
- name: Checkout code
uses: actions/checkout@v2
- run: go test ./...