aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test-manual.yaml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml
index e338099..515805e 100644
--- a/.github/workflows/test-manual.yaml
+++ b/.github/workflows/test-manual.yaml
@@ -10,6 +10,9 @@ on:
description: 'Base image'
required: true
default: 'ubuntu:focal'
+ logLevel:
+ description: 'Log Level (info/debug/trace)'
+ default: 'info'
jobs:
test:
@@ -18,4 +21,4 @@ jobs:
- uses: actions/checkout@v2
- name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'"
- run: npx --yes ./devcontainers-cli-0.3.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd`
+ run: npx --yes ./devcontainers-cli-0.3.0.tgz features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }}