Skip to content

chore: initial project - Concat of Webapp & Core #1

chore: initial project - Concat of Webapp & Core

chore: initial project - Concat of Webapp & Core #1

Workflow file for this run

name: Core Bundle
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: core
strategy:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- run: make bundle
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}
if-no-files-found: ignore
path: dist/*