Skip to content

Nightly Build and Integration Tests #137

Nightly Build and Integration Tests

Nightly Build and Integration Tests #137

Workflow file for this run

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