docs: add Head-Control to the web UI list #3204
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: Check integration tests workflow | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-$${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: nix develop --fallback --command bash -e {0} | |
| jobs: | |
| check-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| fetch-depth: 2 | |
| - name: Get changed files | |
| id: changed-files | |
| uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 | |
| with: | |
| filters: | | |
| files: | |
| - '*.nix' | |
| - 'go.*' | |
| - '**/*.go' | |
| - 'integration_test/' | |
| - 'config-example.yaml' | |
| - uses: NixOS/nix-installer-action@6b8548fe06acfb0155a50ab5d561accb215764cc # main | |
| if: steps.changed-files.outputs.files == 'true' | |
| - uses: Mic92/hestia@fb239a2f72d4b6e26eec5425f289dea23b27a527 # v2.0.0 | |
| if: steps.changed-files.outputs.files == 'true' | |
| - name: Generate and check integration tests | |
| if: steps.changed-files.outputs.files == 'true' | |
| run: | | |
| (cd .github/workflows && go generate) | |
| git diff --exit-code .github/workflows/test-integration.yaml | |
| - name: Show missing tests | |
| if: failure() | |
| run: | | |
| git diff .github/workflows/test-integration.yaml |