File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 strategy :
88 matrix :
99 os : [ubuntu-latest, macos-latest, windows-latest]
10-
11- environment : PIXI_API_ACCESS
12-
10+
1311 steps :
1412 - name : Checkout STUMPY
1513 uses : actions/checkout@v4
1614 with :
1715 repository : stumpy-dev/stumpy
18-
19- - name : Determine Safe Python Version
20- id : get_safe_python
21- run : |
22- echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
23-
24- - name : Set Up Python
25- uses : actions/setup-python@v5
26- with :
27- python-version : ${{ steps.get_safe_python.outputs.safe_python }}
28-
29- - name : Display Python Version
30- run : python -c "import sys; print(sys.version)"
31- shell : bash
32-
33- - name : Checkout STUMPY
34- if : " startsWith(steps.python.outputs.version, env.req-python-version)"
35- uses : actions/checkout@v4
36- with :
37- repository : stumpy-dev/stumpy
38-
39- - name : Check token
40- run : |
41- if [ -z "$TOKEN" ]; then
42- echo "ERROR--PREFIX_DEV_TOKEN is empty or not accessible!"
43- exit 1
44- else
45- echo "Token is available (length: ${#TOKEN})"
46- fi
47- env :
48- TOKEN : ${{ secrets.PREFIX_DEV_TOKEN }}
4916
5017 - name : Set Up Pixi
5118 uses : prefix-dev/setup-pixi@v0.9.4
6027 - name : Install STUMPY And Other Dependencies
6128 run : pixi install
6229 shell : bash
30+
31+ - name : Show Full Numba Environment
32+ run : python -m numba -s
33+ shell : bash
6334
6435 - name : Unit Tests
6536 run : ./test.sh
You can’t perform that action at this time.
0 commit comments