File tree Expand file tree Collapse file tree 1 file changed +24
-1
lines changed
Expand file tree Collapse file tree 1 file changed +24
-1
lines changed Original file line number Diff line number Diff line change 9898 timeout-minutes : 15
9999 runs-on : windows-ARM64
100100
101+ strategy :
102+ fail-fast : false
103+ matrix :
104+ python-version : 3.11
105+ python-architecture : [x86, x64, arm64]
106+ include :
107+ # Translate architecture to bitness for py.exe commandline
108+ - python-bitness-to-test : 32
109+ python-architecture : x86
110+ - python-bitness-to-test : 64
111+ python-architecture : x64
112+ - python-bitness-to-test : arm64
113+ python-architecture : arm64
114+
101115 steps :
102116 - uses : actions/checkout@v4
103117
104118 - name : Listing python versions availables
105- run : py -0
119+ run : py -0
120+
121+ - name : Installing pytest
122+ run : py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -m pip install pytest
123+
124+ - name : Printing version
125+ run : py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -VV
126+
127+ - name : Testing PFW execute
128+ run : py -${{ matrix.python-version}}-${{ matrix.python-bitness-to-test}} -c "import windows; print(windows)"
You can’t perform that action at this time.
0 commit comments