We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3730bc7 commit 1d7707fCopy full SHA for 1d7707f
.github/workflows/e2e-ceph-main-weekly.yaml
@@ -0,0 +1,28 @@
1
+name: Weekly E2E (Ceph main)
2
+
3
+on:
4
+ schedule:
5
+ # Run once a week (Sunday 00:00 UTC)
6
+ - cron: "0 0 * * 0"
7
+ workflow_dispatch:
8
9
+jobs:
10
+ e2e-ceph-main:
11
+ name: E2E tests against Ceph main
12
+ runs-on: ubuntu-latest
13
+ continue-on-error: true
14
15
+ steps:
16
+ - name: Checkout ceph-csi
17
+ uses: actions/checkout@v4
18
19
+ - name: Set up Go
20
+ uses: actions/setup-go@v5
21
+ with:
22
+ go-version-file: go.mod
23
24
+ - name: Run E2E tests (Ceph main)
25
+ env:
26
+ CEPH_VERSION: main
27
+ run: |
28
+ make e2e
0 commit comments