Chore: Add codeowners #236
Workflow file for this run
This file contains hidden or 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: Docs Checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - release-* | |
| tags: | |
| - "v*" | |
| pull_request: | |
| branches: | |
| - main | |
| - release-* | |
| workflow_dispatch: { } | |
| env: | |
| GO_VERSION: '1.23' | |
| jobs: | |
| checks: | |
| name: Check Docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install xmllint | |
| run: sudo apt-get install -y libxml2-utils | |
| - name: Checkout Code | |
| uses: actions/checkout@v3 | |
| - name: Check boilerplate | |
| run: make checklicense | |
| - name: Setup Go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| cache: true | |
| # Currently not required | |
| # Will be required to auto-gen docs in the future | |
| - name: Run Go Generate | |
| run: make generate | |
| - name: Check SVG formatting | |
| run: LINT=true make svgformat |