diff options
author | Josh Spicer <joshspicer@github.com> | 2022-08-24 00:23:21 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-24 00:23:21 +0300 |
commit | f82307ad60514d1e912a9aa2b64204721fe955eb (patch) | |
tree | bc1799743ef7620c3e460d54f77c1fac3003fd4c /.github/workflows/test-manual.yaml | |
parent | 84f4996643b84c6f3dcd5c3edc72ae176dceaf65 (diff) |
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
Diffstat (limited to '.github/workflows/test-manual.yaml')
-rw-r--r-- | .github/workflows/test-manual.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml index 3e285a7..333dbb8 100644 --- a/.github/workflows/test-manual.yaml +++ b/.github/workflows/test-manual.yaml @@ -3,7 +3,7 @@ on: workflow_dispatch: inputs: features: - description: "list of features to execute tests against" + description: "List of features to execute tests against" required: true default: "go dotnet" baseImage: @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v2 - name: "Install latest devcontainer CLI" - run: npm install -g @devcontainers/cli@0.12.1 + 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 }} --collection-folder `pwd` --log-level ${{ github.event.inputs.logLevel }} + run: devcontainer features test --features ${{ github.event.inputs.features }} --base-image ${{ github.event.inputs.baseImage }} --log-level ${{ github.event.inputs.logLevel }} . |