Improve gramar and fix errors messages in graph, metadata and runtime package #905
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: Integration Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths: | |
| - "**.go" | |
| - go.mod | |
| - go.sum | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - "**.go" | |
| - go.mod | |
| - go.sum | |
| jobs: | |
| integration: | |
| name: Integration Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'go.mod' | |
| cache: true | |
| - name: Install setup-envtest | |
| run: go install sigs.k8s.io/controller-runtime/tools/setup-envtest@latest | |
| - name: Configure envtest | |
| run: | | |
| KUBEBUILDER_ASSETS="$(setup-envtest use -p path 1.31.x)" | |
| echo "KUBEBUILDER_ASSETS=${KUBEBUILDER_ASSETS}" >> $GITHUB_ENV | |
| - name: Run integration tests | |
| run: make test WHAT=integration |