Skip to content

Bump golang.org/x/tools from 0.23.0 to 0.24.0 in /tools #1432

Bump golang.org/x/tools from 0.23.0 to 0.24.0 in /tools

Bump golang.org/x/tools from 0.23.0 to 0.24.0 in /tools #1432

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
GO111MODULE: on
jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: avto-dev/markdown-lint@v1
with:
config: '.markdownlint.yml'
args: 'docs'
misspell:
runs-on: ubuntu-latest
strategy:
matrix:
go:
- version: "1.21"
name: target
- version: "1.22.0"
name: latest
name: "Spell check with ${{ matrix.go.name }} Go"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go.version }}
- run: |
make docs-lint