You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia --project=src/workflows/${{ matrix.workflow }} -e '
31
+
using Pkg
32
+
Pkg.instantiate()
33
+
Pkg.update()
34
+
'
35
+
36
+
- name: Load packages
37
+
run: |
38
+
julia --project=src/workflows/${{ matrix.workflow }} -e '
39
+
using Pkg
40
+
for (_,pkg) in Pkg.dependencies()
41
+
pkg.is_direct_dep || continue
42
+
@eval using $(Symbol(pkg.name))
43
+
println(pkg.name)
44
+
end
45
+
'
46
+
47
+
notify-failure:
48
+
needs: test-latest
49
+
if: failure()
50
+
runs-on: ubuntu-latest
51
+
52
+
permissions:
53
+
issues: write
54
+
55
+
steps:
56
+
- uses: actions/github-script@v7
57
+
with:
58
+
script: |
59
+
const title = `Nightly CI failure ${new Date().toISOString().slice(0,10)}`
60
+
const body = `Nightly ecosystem integration test failed.\n\nRun: ${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}`
0 commit comments