Skip to content

Daily - pip install and run all unit tests #43

Daily - pip install and run all unit tests

Daily - pip install and run all unit tests #43

Workflow file for this run

name: Daily - pip install and run all unit tests
on:
schedule:
# run daily at midnight
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -e ".[dev]"
- run: hatch run test