Skip to content

Go config: Enhancements #517

Go config: Enhancements

Go config: Enhancements #517

Workflow file for this run

name: docs
on:
push:
branches:
- main
tags:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: Docs formatting and link checking.
steps:
- name: Checkout code into the Go module directory.
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.15.x
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Check formatting and links.
env:
GOBIN: /tmp/.bin
run: make check-docs