Skip to content

Commit

Permalink
Run tests weekly on latest python to detect regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Nov 22, 2022
1 parent 3fec9d1 commit c095cad
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: Tests

on: [push, pull_request, workflow_dispatch]
on:
push:
workflow_dispatch:
schedule: # Run tests once a week to detect regressions
- cron: '0 0 * * 1'

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.x", "pypy-3.9"]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit c095cad

Please sign in to comment.