Skip to content

Commit

Permalink
Run test on latest Python once a week
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka committed Nov 22, 2022
1 parent e3c55d0 commit 5714424
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, workflow_dispatch]
on:
push:
workflow_dispatch:
schedule: # Run once a week to detect any 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"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.x"]

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

0 comments on commit 5714424

Please sign in to comment.