Skip to content

Build on Windows by @manoskary #35

Build on Windows by @manoskary

Build on Windows by @manoskary #35

run-name: Build on Windows by @${{ github.actor }}
on:
release:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install torch --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements.txt
python setup.py build_ext --inplace