File tree 4 files changed +15
-15
lines changed
4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 18
18
19
19
jobs :
20
20
# Job 1: Build the static files for the documentation site
21
- build -docs :
21
+ building -docs :
22
22
runs-on : macos-14 # Use macOS to switch to dark mode for Plotly charts
23
23
24
24
steps :
@@ -159,8 +159,8 @@ jobs:
159
159
compression-level : 0
160
160
161
161
# Job 2: Deploy the static files
162
- deploy -docs :
163
- needs : build -docs # previous job 'build-docs' need to be finished first
162
+ deploying -docs :
163
+ needs : building -docs # previous job 'build-docs' need to be finished first
164
164
165
165
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
166
166
permissions :
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ concurrency:
24
24
cancel-in-progress : true
25
25
26
26
jobs :
27
- test -code :
27
+ testing -code :
28
28
29
29
strategy :
30
30
fail-fast : false
38
38
- name : Checkout repository
39
39
uses : actions/checkout@v4
40
40
41
+ - name : Set up Python ${{ matrix.python-version }}
42
+ uses : actions/setup-python@v5
43
+ with :
44
+ python-version : ${{ matrix.python-version }}
45
+
46
+ - name : Upgrade package installer for Python
47
+ shell : bash
48
+ run : python -m pip install --upgrade pip
49
+
41
50
- name : Setup conda (Windows only)
42
51
if : runner.os == 'Windows'
43
52
uses : s-weigand/setup-conda@v1
51
60
shell : bash
52
61
run : conda install -y -c conda-forge libcblas
53
62
54
- - name : Set up Python ${{ matrix.python-version }}
55
- uses : actions/setup-python@v5
56
- with :
57
- python-version : ${{ matrix.python-version }}
58
-
59
- - name : Upgrade package installer for Python
60
- shell : bash
61
- run : python -m pip install --upgrade pip
62
-
63
63
- name : Install Python dependencies
64
64
shell : bash
65
65
run : python -m pip install -r requirements.txt
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ concurrency:
24
24
cancel-in-progress : true
25
25
26
26
jobs :
27
- test -colab :
27
+ testing-tutorials -colab :
28
28
29
29
strategy :
30
30
fail-fast : false
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ concurrency:
15
15
cancel-in-progress : true
16
16
17
17
jobs :
18
- test-code :
18
+ testing-tutorials :
19
19
20
20
strategy :
21
21
fail-fast : false
You can’t perform that action at this time.
0 commit comments