Skip to content

Commit

Permalink
CI: Run stable tests weekly, pre-release tests nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Jun 9, 2021
1 parent a0d2534 commit 770113d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/misc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ name: Miscellaneous checks

# This file runs doctests on the documentation and style checks

on: [push, pull_request]
on:
push:
branches:
- master
- maint/*
pull_request:
branches:
- master
- maint/*

defaults:
run:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,17 @@ name: Pre-release checks

# This file tests against pre-release wheels for dependencies

on: [push, pull_request]
on:
push:
branches:
- master
- maint/*
pull_request:
branches:
- master
- maint/*
schedule:
- cron: '0 0 * * *'

defaults:
run:
Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,17 @@ name: Stable tests
# * Dependencies: minimum requirements, optional requirements
# * Installation methods: setup.py, sdist, wheel, archive

on: [push, pull_request]
on:
push:
branches:
- master
- maint/*
pull_request:
branches:
- master
- maint/*
schedule:
- cron: '0 0 * * 1'

defaults:
run:
Expand Down

0 comments on commit 770113d

Please sign in to comment.