Skip to content

Commit

Permalink
On push and schedule
Browse files Browse the repository at this point in the history
python versions
  • Loading branch information
damies13 committed Mar 24, 2024
1 parent 021a8a2 commit 3b3bf9c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/Regression_Tests.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
---
name: Regression Tests

on: push
on:
push: # Run when changes pushed to any branch
schedule: # Run as per cron shedule on default branch (master)
- cron: '13 13 13 3,6,9,12 *'

# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions
# https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule
# https://crontab.guru/#13_13_13_3,6,9,12_*


jobs:
Agent:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
# python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python: ['3.7']
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.x']
# python: ['3.7']
fail-fast: false
runs-on: ${{ matrix.platform }}
steps:
Expand Down

0 comments on commit 3b3bf9c

Please sign in to comment.