Skip to content

docs(15): add phase 15 plan files #24

docs(15): add phase 15 plan files

docs(15): add phase 15 plan files #24

Workflow file for this run

---
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_call: # Allow release.yml to call this as a gate
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Run unit tests
run: go test ./internal/... -count=1 -timeout 5m
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v7
docs-check:
name: Docs up to date
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Install Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_wrapper: false
- name: Regenerate docs
run: go generate ./...
- name: Check for uncommitted doc changes
run: git diff --exit-code docs/