File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 11name : Test/build
22
3- on : [push, pull_request]
3+ on :
4+ workflow_dispatch : # Allows manual triggering
5+ push : # only build on pusheess to the main branch
6+ branches :
7+ - master
8+ pull_request :
49
510jobs :
611 build :
914 max-parallel : 4
1015 fail-fast : false
1116 matrix :
12- python-version : [3.8 , 3.9, '3.10', 3.11 ]
17+ python-version : [3.11 , 3.12 ]
1318 platform : [ubuntu-latest, macos-latest, windows-latest]
19+ # The include below adds jobs on older versions of python,
20+ # but just on one platform. Windows is probably the most widely
21+ # used for vpython, so test on that.
22+ include :
23+ - python-version : " 3.8"
24+ platform : windows-latest
25+ - python-version : " 3.9"
26+ platform : windows-latest
27+ - python-version : " 3.10"
28+ platform : windows-latest
1429 runs-on : ${{ matrix.platform }}
1530
1631 steps :
You can’t perform that action at this time.
0 commit comments