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 }}