Skip to content

Cron Test

Cron Test #5

Workflow file for this run

name: Cron Test
on:
schedule:
# Run every Tuesday at 11:00.
- cron: '0 11 * * 2'
jobs:
lint:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install hatch
- name: Check code style
run: hatch run style:code
- name: Check docstrings
run: hatch run style:docstrings
- name: Build documentation
run: hatch run docs:build
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install hatch
- name: Check installation
run: hatch run install:check
- name: Check safety
run: hatch run safety:check
- name: Check types
run: hatch run types:check
- name: Test suite
run: hatch run +py=${{ matrix.python-version }} test:run
- name: Report coverage
shell: bash
run: bash <(curl -s https://codecov.io/bash)