File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1313
1414 - name : Checkout code
1515 uses : actions/checkout@v2
16+ - name : Set up Python 3.8
17+ uses : actions/setup-python@v2
18+ with :
19+ python-version : ' 3.8'
1620 - name : Build project # This would actually build your project, using zip for an example artifact
1721 run : |
1822 .\make.bat
Original file line number Diff line number Diff line change 11Write-Host " --- Installing Python runtime ---" - ForegroundColor blue
2- .\python-install.exe / quiet InstallAllUsers= 1 PrependPath= 1 Include_test= 0 Include_launcher= 0
2+ Start-Process - FilePath .\python-install.exe - ArgumentList " /quiet InstallAllUsers=1 PrependPath=1 Include_test=0 Include_launcher=0" - NoNewWindow - Wait
33python.exe - m pip install -- upgrade pip
44Write-Host " --- Python runtime installed ---`n " - ForegroundColor green
55
You can’t perform that action at this time.
0 commit comments