We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdf540b commit bfac79cCopy full SHA for bfac79c
2 files changed
.control/dev.yaml
@@ -948,6 +948,10 @@ devcontainer_main:
948
return out
949
}}#
950
task:
951
+ test-ci:
952
+ name: Test
953
+ script: |
954
+ echo "TEST OK!"
955
jupyterlab:
956
name: Open JupyterLab
957
script: |
.github/workflows/ci-build.yaml
@@ -36,10 +36,14 @@ jobs:
36
uses: ./.github/actions/install-env
37
with:
38
load_cache: 'false'
39
+ - name: TEST
40
+ run: |
41
+ test-ci
42
+ x=$(test-ci)
43
+ echo "X is $x"
44
- name: Build
45
id: build
46
run: |
- project --help
47
output_path=$(${{ fromJSON(inputs.config).build_command }})
48
echo "output_path=$output_path" >> "$GITHUB_OUTPUT"
49
- name: README Render
0 commit comments