summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index d78cf7d..6d0da75 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -5,12 +5,14 @@ on:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
+ schedule:
+ - cron: '33 7 * * 0' # run weekly on sundays
jobs:
test:
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest] # [macos-latest, ubuntu-latest, windows-latest]
+ os: [ubuntu-latest]
python: ['3.7', '3.8', '3.9', '3.10', '3.11', 'pypy-3.9']
runs-on: ${{ matrix.os }}
steps: