Skip to content

Bump golang.org/x/net from 0.22.0 to 0.23.0 #15

Bump golang.org/x/net from 0.22.0 to 0.23.0

Bump golang.org/x/net from 0.22.0 to 0.23.0 #15

Workflow file for this run

# SPDX-FileCopyrightText: The migadu-client.go Authors
# SPDX-License-Identifier: 0BSD
name: Verify Commits
on:
pull_request:
branches: [ main ]
jobs:
verify:
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v4
- id: setup_go
name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- id: lint
name: Lint Go Code
uses: golangci/golangci-lint-action@v3
with:
version: latest
- id: tests
name: Run Tests
run: go test -v -cover ./...