Skip to content

Fixed build-time dependency for package build in CI/CD #2

Fixed build-time dependency for package build in CI/CD

Fixed build-time dependency for package build in CI/CD #2

Workflow file for this run

name: Phorcys CI/CD
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
architecture: x64
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel build
- name: Build package
run: python -m build