Skip to content

Commit 01ada63

Browse files
committed
revert short circuiting the tests
1 parent a974452 commit 01ada63

1 file changed

Lines changed: 29 additions & 29 deletions

File tree

.github/workflows/CI.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
run: |
3434
julia -e '
3535
using Pkg
36-
Pkg.add("Interact")'
37-
# Pkg.add("Oscar")
38-
# Pkg.add("BenchmarkTools")
39-
# Pkg.add("GraphRecipes")
40-
# Pkg.add("Graphs")
41-
# Pkg.add("Plots")'
36+
Pkg.add("Interact")
37+
Pkg.add("Oscar")
38+
Pkg.add("BenchmarkTools")
39+
Pkg.add("GraphRecipes")
40+
Pkg.add("Graphs")
41+
Pkg.add("Plots")'
4242
job2:
4343
needs:
4444
- job1
@@ -71,32 +71,32 @@ jobs:
7171
julia -e '
7272
using Pkg
7373
Pkg.add("Interact")
74-
Pkg.add("IJulia")'
75-
# Pkg.add("Oscar")
76-
# Pkg.add("BenchmarkTools")
77-
# Pkg.add("GraphRecipes")
78-
# Pkg.add("Graphs")
79-
# Pkg.add("Plots")'
74+
Pkg.add("IJulia")
75+
Pkg.add("Oscar")
76+
Pkg.add("BenchmarkTools")
77+
Pkg.add("GraphRecipes")
78+
Pkg.add("Graphs")
79+
Pkg.add("Plots")'
8080
- run: mkdir -pv notebooks
8181
- name: Use default julia environment
8282
run: |
8383
cat ~/.local/share/jupyter/kernels/julia-1.10/kernel.json | jq | sed 's/^.*project=.*$//' > ~/.local/share/jupyter/kernels/julia-1.10/kernel.json.new
8484
mv -v ~/.local/share/jupyter/kernels/julia-1.10/kernel.json.new ~/.local/share/jupyter/kernels/julia-1.10/kernel.json
8585
cat ~/.local/share/jupyter/kernels/julia-1.10/kernel.json
86-
# - run: python3 tester.py ${{ matrix.node }}
87-
# - name: Upload new notebook
88-
# uses: actions/upload-artifact@v4
89-
# with:
90-
# name: ${{ matrix.node }}
91-
# path: notebooks/*.ipynb
92-
# retention-days: 7
93-
# - name: Notify Slack Action
94-
# if: always()
95-
# uses: ravsamhq/notify-slack-action@2.5.0
96-
# with:
97-
# token: ${{ secrets.GITHUB_TOKEN }}
98-
# status: ${{ job.status }}
99-
# message_format: "{emoji} *${{matrix.node}}* {status_message} in <{run_url}>"
100-
# notify_when: "failure,cancelled,skipped"
101-
# env:
102-
# SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
86+
- run: python3 tester.py ${{ matrix.node }}
87+
- name: Upload new notebook
88+
uses: actions/upload-artifact@v4
89+
with:
90+
name: ${{ matrix.node }}
91+
path: notebooks/*.ipynb
92+
retention-days: 7
93+
- name: Notify Slack Action
94+
if: always()
95+
uses: ravsamhq/notify-slack-action@2.5.0
96+
with:
97+
token: ${{ secrets.GITHUB_TOKEN }}
98+
status: ${{ job.status }}
99+
message_format: "{emoji} *${{matrix.node}}* {status_message} in <{run_url}>"
100+
notify_when: "failure,cancelled,skipped"
101+
env:
102+
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}

0 commit comments

Comments
 (0)