Skip to content

Commit

Permalink
Run tests once a week on latest python to detect regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
dhadka authored Nov 22, 2022
1 parent 4172dc3 commit add8aa1
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 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"]
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 add8aa1

Please sign in to comment.