feat(sentry-kube): support combining files with keyword #444
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| tests: | |
| name: "Run tests" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: 3.11 | |
| - name: Make environment | |
| run: | | |
| make install-all-dependencies | |
| - name: Set up Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: '1.22' | |
| - name: Install kube-linter | |
| # Needed for the kube-linter integration tests. | |
| # It this starts taking too long we can xfail those tests and isolate | |
| # the logic more. | |
| run: go install golang.stackrox.io/kube-linter/cmd/kube-linter@v0.6.8 | |
| - name: Run sentry-kube tests | |
| run: | | |
| make tools-test |