diff options
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 }} . |