docs: change docs website to hugo to align with other defense unicorns products #10292
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: Validate Docs and Schema | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Setup golang | |
uses: ./.github/actions/golang | |
- name: Docs and schemas | |
run: "make test-docs-and-schema" | |
- name: Save logs | |
if: always() | |
uses: ./.github/actions/save-logs |