Skip to content

added DS_Store to gitignore #54

added DS_Store to gitignore

added DS_Store to gitignore #54

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.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: create temp downloads
run: |
make create_downloads
- name: build app
run: |
make build_exe