Skip to content
Merged
6 changes: 3 additions & 3 deletions .github/workflows/ci_tests_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ on:
- '.gitignore'
repository_dispatch:
types: [test-gmt-dev-command]
# Schedule daily tests
# Schedule tests on Monday/Wednesday/Friday
schedule:
- cron: '0 0 * * *'
- cron: '0 0 * * 1,3,5'

jobs:
test_gmt_dev:
Expand All @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.10']
os: [ubuntu-latest, macOS-11.0, windows-2022]
os: [ubuntu-latest, macOS-12.0, windows-2022]
gmt_git_ref: [master]
timeout-minutes: 30
defaults:
Expand Down
4 changes: 2 additions & 2 deletions doc/maintenance.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ There are 11 configuration files located in `.github/workflows`:
4. `ci_tests_dev.yaml` (GMT Dev Tests on Linux/macOS/Windows).

This is triggered when a PR is marked as "ready for review", or using the
slash command `/test-gmt-dev`. It is also scheduled to run daily on the
*main* branch.
slash command `/test-gmt-dev`. It is also scheduled to run on Monday,
Wednesday and Friday on the *main* branch.

5. `cache_data.yaml` (Caches GMT remote data files needed for GitHub Actions CI)

Expand Down