aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test-manual.yaml
blob: 1c8ed2c5ebe9174123cc9a444fbc65d9af8be4cb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: "Test Features (manual)"
on: 
  workflow_dispatch:
    inputs:
      features:
        description: 'Comma-separated list of features to execute tests against'     
        required: true
        default: 'go,dotnet'
      baseImage: 
        description: 'Base image'     
        required: true
        default: 'mcr.microsoft.com/vscode/devcontainers/base:focal'

jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: " Testing '${{ github.event.inputs.features }}' against '${{ github.event.inputs.baseImage }}'"
        run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd`