Skip to content

Nightly Build

Nightly Build #21

Workflow file for this run

name: Nightly Build
on:
schedule:
- cron: "00 00 * * *"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Set up environment
run: |
rm -rf PyPDFForm
python -m pip install --upgrade pip
pip install PyPDFForm
pip install -r requirements.txt
- name: Run nightly tests
run: |
pytest