CoolFace
Apppublic

fred-dev/comfy_ui_ali

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
test-build.yml32 linesDownload Raw Back to workflows
1name: Build package2 3#4# This workflow is a test of the python package build.5# Install Python dependencies across different Python versions.6#7 8on:9  push:10    paths:11      - "requirements.txt"12      - ".github/workflows/test-build.yml"13 14jobs:15  build:16    name: Build Test17    runs-on: ubuntu-latest18    strategy:19      fail-fast: false20      matrix:21        python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]22    steps:23      - uses: actions/checkout@v424      - name: Set up Python ${{ matrix.python-version }}25        uses: actions/setup-python@v426        with:27          python-version: ${{ matrix.python-version }}28      - name: Install dependencies29        run: |30          python -m pip install --upgrade pip31          pip install -r requirements.txt32