-
-
Notifications
You must be signed in to change notification settings - Fork 34
38 lines (38 loc) · 1.28 KB
/
pypi-setup-win.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: PYPI Build & Setup On Windows
on: [push]
#defaults:
# run:
# working-directory: wrdir
jobs:
#deploy:
# runs-on: windows-latest
# steps:
# - name: install readline
# run: python -m pip install readline
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [windows-latest] #,windows-latest
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
# Optional - x64 or x86 architecture, defaults to x64
architecture: 'x64'
# You can test your matrix by printing the current Python version
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Create Workspace Folder
run: mkdir -p wrdir && mkdir -p wrdir/hiphp
- name: Copy Files to Workspace Folder
run: cp -r hiphp/* wrdir/hiphp && cp setup.py wrdir/setup.py && cp setup.cfg wrdir/setup.cfg
- name: pip Upgrade
run: python -m pip install --upgrade pip
- name: Install requirements
run: pip install -r requirements.txt
- name: Run setup.py File
run: python wrdir/setup.py install