Add integration test for upgrades using download proxy #25
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: Validate docs generation structure | |
| on: | |
| pull_request: | |
| paths: | |
| - 'internal/edot/**' | |
| - 'internal/pkg/otel/**' | |
| - '.github/workflows/validate-docs-structure.yml' | |
| jobs: | |
| validate-structure: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install mage | |
| uses: magefile/mage-action@6f50bbb8ea47d56e62dee92392788acbc8192d0b # v3.1.0 | |
| with: | |
| install-only: true | |
| - name: Validate expected files for docs generation | |
| run: mage check:docsFiles | |