summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Socol <me@jamessocol.com>2022-12-03 12:06:46 -0500
committerGitHub <noreply@github.com>2022-12-03 12:06:46 -0500
commitdc1cb87332c0233a1a280df37beee925f40d2f77 (patch)
tree6d5dd0b7aa8fe2f988f9140a4927265d242efa7b
parent1325f31ace0d2f219c5ca4cc3571cb343bd76ca6 (diff)
parent119d16216b47e4d74f8a281f8a7dd9f3acf3b5f9 (diff)
downloadpystatsd-dc1cb87332c0233a1a280df37beee925f40d2f77.tar.gz
Merge pull request #179 from jsocol/periodic-ci-runs
Add periodic CI run
-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: