From d70d8c3dec7ac11115edefb7b01b456b21cd26be Mon Sep 17 00:00:00 2001 From: aya Date: Sun, 23 Mar 2025 13:30:23 +0200 Subject: [PATCH] Fix CI yml --- .github/workflows/CI.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index e40dab4..12223e5 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -1,12 +1,15 @@ name: Endurance Tests on: - push: + pull_request: branches: [ "stress_test" ] + schedule: + - cron: '0 2 * * *' jobs: endurance: runs-on: ubuntu-latest + steps: - name: Check out repository uses: actions/checkout@v3 @@ -32,7 +35,7 @@ jobs: - name: Build nwaku dependencies run: make -C waku - - name: Run Stress Test + - name: Run Endurance Test run: | go test -v ./waku/stress_test.go -count=1 -timeout=360m | tee testlogs.log