Data Extracter #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python application | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.9.6 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9.6" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Build executable with cx_Freeze | |
run: | | |
python setup.py build | |
- name: Upload Package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: QnE-Python | |
path: build/ | |
- name: Upload PDF Templates | |
uses: actions/upload-artifact@v4 | |
with: | |
name: templates | |
path: templates/ |