Skip to content

Commit bf541ba

Browse files
authored
Create pdf-tools-app.yml
1 parent e5e31f1 commit bf541ba

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# This workflow will build the target file in a Windows environment by executing a specific script
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
3+
4+
name: Python application - Windows Build
5+
6+
on:
7+
push:
8+
branches: [ "master" ]
9+
pull_request:
10+
branches: [ "master" ]
11+
12+
permissions:
13+
contents: read
14+
15+
jobs:
16+
build:
17+
18+
runs-on: windows-latest
19+
20+
steps:
21+
- uses: actions/checkout@v4
22+
- name: Set up Python 3.10
23+
uses: actions/setup-python@v3
24+
with:
25+
python-version: "3.10"
26+
- name: Install dependencies
27+
run: |
28+
cd pdf_tools
29+
python -m pip install --upgrade pip
30+
pip install -r requirements.txt
31+
- name: Build target file
32+
run: |
33+
cd pdf_tools
34+
python build_exe.py

0 commit comments

Comments
 (0)