Skip to content

build(deps): bump the actions-deps group with 5 updates #534

build(deps): bump the actions-deps group with 5 updates

build(deps): bump the actions-deps group with 5 updates #534

Workflow file for this run

name: docs
on:
pull_request:
branches: ['main']
permissions: {}
env:
GOTOOLCHAIN: local
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Install Go 1.26
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version: '1.26'
check-latest: true
cache: true
- name: Build docs
run: |
for pkg in auth common features cloudantv1
do
go doc -all -u $pkg
done