SKIP-1159 - A better labeler #2343
This file contains 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: Test | |
on: | |
pull_request: | |
paths-ignore: | |
- doc/** | |
- samples/** | |
- README.md | |
- CONTRIBUTING.md | |
- .github/workflows/api-docs.yaml | |
push: | |
paths-ignore: | |
- doc/** | |
- samples/** | |
- README.md | |
- CONTRIBUTING.md | |
- .github/workflows/api-docs.yaml | |
jobs: | |
test: | |
name: Build and run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23.1' | |
- name: Create test cluster | |
run: make setup-local | |
- name: Run tests | |
run: make run-test |