From 6d555e26444d1cd10e2cf7653894a214c9c14f87 Mon Sep 17 00:00:00 2001 From: Sen ZmaKi <90490506+SenZmaKi@users.noreply.github.com> Date: Sun, 4 Feb 2024 03:40:41 +0300 Subject: [PATCH] ci: Make tests run daily --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cfb2025..2f7d7c3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: tests +name: test on: push: branches: @@ -6,7 +6,10 @@ on: pull_request: branches: - - master + - master + schedule: + # 6:00 A.M UTC == 9:00 AM EAT + - cron: '0 6 * * *' jobs: test: environment: test @@ -30,7 +33,7 @@ jobs: - name: Lint with ruff run: poetry run ruff . - - name: Run Tests + - name: Test with pytest env: SESSION_TOKEN: ${{ secrets.SESSION_TOKEN }} CONVERSATION_ID: ${{ secrets.CONVERSATION_ID }}