Cron Scheduled CI Tests #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHub Actions workflow that runs on a cron schedule. | |
name: Cron Scheduled CI Tests | |
on: | |
schedule: | |
# run at 6am UTC on Mondays | |
- cron: '0 6 * * 1' | |
jobs: | |
# Testing links in documents is a good example of something to run on a schedule | |
# to catch links that stop working for some reason. | |
ci_tests: | |
name: ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: Python 3.10 with minimal dependencies and coverage checking | |
os: ubuntu-latest | |
python: '3.10' | |
toxenv: py310-test-cov | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up python ${{ matrix.python }} on ${{ matrix.os }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install base dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox codecov | |
- name: Test with tox | |
run: | | |
tox -e ${{ matrix.toxenv }} | |
# This is an example of how to upload coverage to codecov | |
- name: Upload coverage to codecov | |
if: "endsWith(matrix.toxenv, '-cov')" | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.xml | |
doc_test: | |
name: 'Check docs links' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python to build docs with sphinx | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.10' | |
- name: Install base dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Check links in docs using tox | |
run: | | |
tox -e linkcheck |