File tree 1 file changed +18
-14
lines changed
1 file changed +18
-14
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - run : echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
13
- - run : echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
14
- - run : echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
12
+ - run : |
13
+ echo "🎉 Job triggered by ${{ github.event_name }} event."
14
+ - run : |
15
+ echo "🐧 Job running on a ${{ runner.os }} server hosted by GitHub!"
16
+ - run : |
17
+ echo "🔎 Branch: ${{ github.ref }}; repository: ${{ github.repository }}."
15
18
- name : Set up python
16
19
uses : actions/setup-python@v5
17
20
with :
18
21
python-version : ' 3.10.14'
19
22
- name : Print out installed python version
20
- run : python --version
23
+ run : |
24
+ python --version
21
25
- name : Upgrade pip, setuptools, wheel
22
- run : pip install --upgrade pip setuptools wheel
26
+ run : |
27
+ pip install --upgrade pip setuptools wheel
23
28
- name : Install required packages
24
- run : pip install -r requirements.txt
25
- test_notebook :
26
- needs : build
27
- runs-on : ubuntu-latest
28
- steps :
29
- - name : Print out installed python version
30
- run : python --version
29
+ run : |
30
+ pip install -r requirements.txt
31
31
- name : Print out installed pip packages
32
- run : pip freeze
33
- - run : jupyter nbconvert --execute --to html 01_test_notebook.ipynb
32
+ run : |
33
+ pip freeze
34
+ - name : Convert test notebook
35
+ run : |
36
+ jupyter nbconvert --execute --to html 01_test_notebook.ipynb
34
37
docker :
38
+ needs : build
35
39
runs-on : ubuntu-latest
36
40
steps :
37
41
-
You can’t perform that action at this time.
0 commit comments