Skip to content

Update python-app.yml #9

Update python-app.yml

Update python-app.yml #9

Workflow file for this run

name: Build And Run PySide6 Project
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build the application
run: |
pyinstaller main.spec