test: cover the self-updater + regenerate docs (fix CI coverage + doc… #30
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
| # CI — delegates to the fleet-canonical reusable workflow in jjuanrivvera/.github. | |
| # Change fleet-wide CI policy there, not here. Repo-specific inputs only live below. | |
| name: CI | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| uses: jjuanrivvera/.github/.github/workflows/go-ci.yml@main | |
| with: | |
| coverage-threshold: "80" | |
| coverpkg: true # coverage relies on commands_test integration tests hitting internal/api | |
| run-gosec: true | |
| run-docs-check: true |