This repository was archived by the owner on Jan 23, 2026. It is now read-only.
Support direct exporter leasing by name in addition to the existing l… #615
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: Unit/Functional tests | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release-*' | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run controller tests | |
| run: make test | |
| - name: Cache operator bin directory | |
| uses: actions/cache@v4 | |
| with: | |
| path: deploy/operator/bin/ | |
| key: ${{ runner.os }}-operator-bin-${{ hashFiles('deploy/operator/go.mod') }} | |
| restore-keys: | | |
| ${{ runner.os }}-operator-bin- | |
| - name: Run operator tests | |
| run: make -C deploy/operator test |