Nightly Build and Integration Tests #137
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: Nightly Build and Integration Tests | |
| on: | |
| schedule: | |
| # Run at 2 AM UTC every day | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: # Allow manual trigger | |
| jobs: | |
| nightly: | |
| name: Nightly Build and Integration Tests | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'redhat-best-practices-for-k8s/perfdive' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run make build | |
| run: make build | |
| - name: Run make integration-test | |
| run: make integration-test |