summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-12-03 12:02:01 -0500
committerJames Socol <me@jamessocol.com>2022-12-03 12:04:31 -0500
commit119d16216b47e4d74f8a281f8a7dd9f3acf3b5f9 (patch)
tree6d5dd0b7aa8fe2f988f9140a4927265d242efa7b
parent1325f31ace0d2f219c5ca4cc3571cb343bd76ca6 (diff)
downloadpystatsd-119d16216b47e4d74f8a281f8a7dd9f3acf3b5f9.tar.gz
Add periodic CI run
Run the tests and linter weekly to make sure the latest patch versions of Python and linter updates don't cause any issues.
-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: