-
Notifications
You must be signed in to change notification settings - Fork 10
48 lines (37 loc) · 1.26 KB
/
python-app.yml
File metadata and controls
48 lines (37 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
# Check-out repository
- uses: actions/checkout@v4
# Setup Python
- uses: actions/setup-python@v5
with:
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- name: Install dependencies
run: |
pip install -r requirements.txt
# Build python script into a single execute or app folder (macOS)
- uses: Nuitka/Nuitka-Action@main
with:
nuitka-version: main
script-name: client.py
mode: app
# Uploads artifact
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: client
path: build/client.exe
include-hidden-files: true