Skip to content

Commit 76d3297

Browse files
committed
Testing action.
1 parent 89417d8 commit 76d3297

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/CI.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,16 @@ jobs:
2121
run: |
2222
julia --project=./ --color=yes -e 'using Pkg; Pkg.build()'
2323
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+
2434
- name: Test RAIRelTest
2535
run: |
2636
julia --project=. test/runtests.jl
27-
28-
- name: Prepare package
29-
run: |
30-
julia --project=. prepare_package

0 commit comments

Comments
 (0)