Skip to content

chore(deps-dev): bump typescript from 5.6.3 to 5.7.3 in /website #23

chore(deps-dev): bump typescript from 5.6.3 to 5.7.3 in /website

chore(deps-dev): bump typescript from 5.6.3 to 5.7.3 in /website #23

name: Test Build
on:
push:
branches:
- main
paths:
- 'src/**'
pull_request:
branches:
- main
jobs:
build:
name: Test Build Windows App
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
repository: Viren070/EmuHaven
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12.6
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pyinstaller
- name: Build distributables
run: |
pyinstaller --noconfirm --onedir --console --name "EmuHaven" --clean --add-data "${{ env.Python_ROOT_DIR }}/Lib/site-packages/customtkinter;customtkinter/" --add-data "src/assets;assets/" src/main.py