Azure: Add support for Azure Workload Identity authentication using DefaultAzureCredential #319
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: docs | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
pull_request: | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
name: Documentation check | |
env: | |
GOBIN: /tmp/.bin | |
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.18.x | |
- uses: actions/cache@v1 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
- name: Check docs | |
run: make check-docs |