1e752e0cba
* Fix regions on two service quotas * Request an increase in VPCs per region * Pin github actions workflows Signed-off-by: Ryan Cragun <me@ryan.ec>
24 lines
584 B
YAML
24 lines
584 B
YAML
name: Check Go Docs for tests
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
# Runs on PRs to main
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
godoc-test-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Set Up Go
|
|
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # v4.0.0
|
|
with:
|
|
cache: true
|
|
go-version-file: ./.go-version
|
|
- name: Verify new tests have go docs
|
|
run: make ci-vet-godoctests
|