Skip to content

Commit

Permalink
Merge pull request #719 from chinapandaman/PPF-718
Browse files Browse the repository at this point in the history
PPF-718: create nightly build action
  • Loading branch information
chinapandaman authored Sep 2, 2024
2 parents 3ed9d83 + 012e1cc commit 7a80b70
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Nightly Build

on:
workflow_dispatch:

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

0 comments on commit 7a80b70

Please sign in to comment.