Skip to content

Merge branch 'master' of https://github.com/tuxy/echo #32

Merge branch 'master' of https://github.com/tuxy/echo

Merge branch 'master' of https://github.com/tuxy/echo #32

Workflow file for this run

# 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: Echo
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install nuitka
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- name: UPX Status
run: upx --version
- name: Package app (nuitka)
run: |
nuitka --onefile --assume-yes-for-downloads --plugin-enable=upx main.py
- uses: actions/upload-artifact@v4
with:
name: echo
path: ./main.exe