Skip to content

nightly

nightly #14

Workflow file for this run

name: nightly
on:
schedule:
# runs every day at 6am UTC
- cron: "0 6 * * *"
workflow_dispatch:
env:
GO_VERSION: '1.21.6'
jobs:
test-e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Setup kubeconfig
env:
KUBECONFIG_FILE: ${{ secrets.KNUU_KUBECONFIG_FILE }}
run: |
mkdir -p $HOME/.kube
echo "${KUBECONFIG_FILE}" > $HOME/.kube/config
- name: Run e2e tests
run: make test-e2e
test:
uses: ./.github/workflows/test.yml