Skip to content

daily

daily #1283

Workflow file for this run

# Check on a daily basis that the main branch builds so that we do a true
# test of whether dependencies still work.
name: daily
on:
schedule:
- cron: "30 6 * * *"
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.12", pypy-3.10]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[testing]
- name: Test with pytest
run: |
pytest -p no:smtpd --cov