Skip to content

Commit bfac79c

Browse files
committed
test
1 parent bdf540b commit bfac79c

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

.control/dev.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -948,6 +948,10 @@ devcontainer_main:
948948
return out
949949
}}#
950950
task:
951+
test-ci:
952+
name: Test
953+
script: |
954+
echo "TEST OK!"
951955
jupyterlab:
952956
name: Open JupyterLab
953957
script: |

.github/workflows/ci-build.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,14 @@ jobs:
3636
uses: ./.github/actions/install-env
3737
with:
3838
load_cache: 'false'
39+
- name: TEST
40+
run: |
41+
test-ci
42+
x=$(test-ci)
43+
echo "X is $x"
3944
- name: Build
4045
id: build
4146
run: |
42-
project --help
4347
output_path=$(${{ fromJSON(inputs.config).build_command }})
4448
echo "output_path=$output_path" >> "$GITHUB_OUTPUT"
4549
- name: README Render

0 commit comments

Comments
 (0)