diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3671bdd..38aab19 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,6 +1,10 @@ name: Tests -on: [push, workflow_dispatch] +on: + push: + workflow_dispatch: + schedule: # Run once a week to detect any regressions + - cron: '0 0 * * 1' jobs: build: @@ -8,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.x"] steps: - uses: actions/checkout@v3