From 1ba34d581446e0c3f433ae196073a7c358c94e2d Mon Sep 17 00:00:00 2001 From: Ian Hunt-Isaak Date: Tue, 21 Mar 2023 12:22:43 -0400 Subject: [PATCH] ci: fix cron job --- .github/workflows/cron.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 773fb4c..598199a 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -6,6 +6,7 @@ name: --pre Test on: schedule: - cron: '0 */12 * * *' # every 12 hours + pull_request: {} workflow_dispatch: jobs: @@ -17,7 +18,7 @@ jobs: fail-fast: false matrix: python-version: ['3.8', '3.9', '3.10'] - platform: [ubuntu-latest, macos-latest, windows-latest] + platform: [ubuntu-latest] steps: - uses: actions/checkout@v3