fix(deps): update golang.org/x/exp digest to 2d47ceb #1332
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: 'ci' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: docs | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.19' ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Restore Cache | |
uses: actions/cache@v4 | |
id: cache | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: mkdir -p ~/.config/equinix | |
- run: touch ~/.config/equinix/metal.yaml | |
- name: Build docs | |
run: make generate-docs | |
env: | |
METAL_AUTH_TOKEN: bogus | |
- name: Detect Uncommitted Docs | |
run: git diff --exit-code docs |