File tree 3 files changed +7
-8
lines changed
3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ if [ "$1" = true ]; then
23
23
" examples/classification/shapelet_based.ipynb"
24
24
" examples/classification/convolution_based.ipynb"
25
25
" examples/similarity_search/code_speed.ipynb"
26
+ " examples/transformations/signature_method.ipynb"
26
27
27
28
)
28
29
fi
Original file line number Diff line number Diff line change @@ -52,10 +52,12 @@ jobs:
52
52
- name : Checkout
53
53
uses : actions/checkout@v4
54
54
55
- - name : Install bash 5.x
55
+ - name : Install latest version of bash
56
56
run : |
57
57
brew install bash
58
58
/opt/homebrew/bin/bash --version
59
+ sudo ln -sf /opt/homebrew/bin/bash /bin/bash
60
+ bash --version
59
61
60
62
- name : Setup Python 3.10
61
63
uses : actions/setup-python@v5
74
76
with :
75
77
additional_extras : " dev,binder"
76
78
77
- - name : Install esig on macOS
78
- run : brew install boost && pip install "esig>=0.9.7,<1.0.0"
79
-
80
79
- name : Run example notebooks
81
80
run : .github/utilities/run_examples.sh false
82
81
shell : bash
Original file line number Diff line number Diff line change @@ -25,10 +25,12 @@ jobs:
25
25
- name : Checkout
26
26
uses : actions/checkout@v4
27
27
28
- - name : Install bash 5.x
28
+ - name : Install latest version of bash
29
29
run : |
30
30
brew install bash
31
31
/opt/homebrew/bin/bash --version
32
+ sudo ln -sf /opt/homebrew/bin/bash /bin/bash
33
+ bash --version
32
34
33
35
- name : Setup Python 3.10
34
36
uses : actions/setup-python@v5
47
49
with :
48
50
additional_extras : " dev,binder"
49
51
50
- - name : Install esig on macOS
51
- run : brew install boost && pip install "esig>=0.9.7,<1.0.0"
52
-
53
52
- name : Run example notebooks
54
53
run : .github/utilities/run_examples.sh ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'full examples run') }}
55
54
shell : bash
You can’t perform that action at this time.
0 commit comments