8000 fix(deps): update module golang.org/x/exp to v0.0.0-20240416160154-fe59bbe5cc7f · equinix/metal-cli@830d8ef · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(deps): update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842 #1158

fix(deps): update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842

fix(deps): update module golang.org/x/exp to v0.0.0-20240506185415-9bf2ced13842 #1158

Workflow file for this run

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-
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- 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
0