We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89417d8 commit 76d3297Copy full SHA for 76d3297
.github/workflows/CI.yml
@@ -21,10 +21,16 @@ jobs:
21
run: |
22
julia --project=./ --color=yes -e 'using Pkg; Pkg.build()'
23
24
+ - name: Run Prepare Package Action
25
+ id: prepare-package
26
+ uses: ./.github/actions/prepare-package
27
+ with:
28
+ package-directory: "RelationalAI/graphlib-rel"
29
+ changes: ""
30
+
31
+ - name: Print Action Output
32
+ run: echo "Prepare Package Result: ${{ steps.prepare-package.outputs.result }}"
33
34
- name: Test RAIRelTest
35
36
julia --project=. test/runtests.jl
-
- - name: Prepare package
- run: |
- julia --project=. prepare_package
0 commit comments