Update test-manual.yaml

This commit is contained in:
Josh Spicer 2022-05-25 11:27:51 -07:00 committed by GitHub
parent da536e1feb
commit 064014481c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,6 +10,9 @@ on:
description: 'Base image' description: 'Base image'
required: true required: true
default: 'ubuntu:focal' default: 'ubuntu:focal'
logLevel:
description: 'Log Level (info/debug/trace)'
default: 'info'
jobs: jobs:
test: test:
@ -18,4 +21,4 @@ jobs:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'" - 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 }}