features/.github/workflows/test-manual.yaml
Josh Spicer f82307ad60
test updates to adopt https://github.com/devcontainers/cli/pull/124 (#114)
* test updates to adopt https://github.com/devcontainers/cli/pull/124

* remove accidental tgz check in

* typo in option

* typo in python install script on dotnet6/jammy branch

* no scenarios

* code review and test name

* Delete install_os_provided_python.sh
2022-08-23 17:23:21 -04:00

29 lines
902 B
YAML

name: "Manual - Test Features"
on:
workflow_dispatch:
inputs:
features:
description: "List of features to execute tests against"
required: true
default: "go dotnet"
baseImage:
description: "Base image"
required: true
default: "ubuntu:focal"
logLevel:
description: "Log Level (info/debug/trace)"
required: true
default: "info"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Install latest devcontainer CLI"
run: npm install -g @devcontainers/cli
- name: "Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'"
run: devcontainer features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --log-level ${{ github.event.inputs.logLevel }} .