Skip to content

updated readme with issues to address #31

updated readme with issues to address

updated readme with issues to address #31

Workflow file for this run

name: Application_Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
make update
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: build app
run: |
make build_exe