From db2edda7e5d0549ae5c9b196adb61197488249b0 Mon Sep 17 00:00:00 2001 From: Cameron Maloney Date: Tue, 14 May 2024 11:08:25 -0700 Subject: [PATCH] Update develop.yml --- .github/workflows/develop.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 48e4bf0d..7084cd69 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -8,6 +8,21 @@ concurrency: cancel-in-progress: true jobs: + flask: + name: Flask + runs-on: windows-latest + strategy: + fail-fast: false + + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-python@v2 + with: + python-version: 3.12.3 + + - run: pip install -r requirements.txt pyinstaller + - run: pyinstaller api/app.spec + build: name: 🏗️ Build runs-on: ubuntu-latest