Collect CRDs and Webhook configurations for the Backup and Restore resources [KO-431] #15
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: tests | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| run-tests: | |
| name: env-test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup-go | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.23 | |
| - name: Checkout sources | |
| uses: actions/checkout@v3 | |
| - name: Run Tests | |
| run: make test |