aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/test-manual.yaml
blob: 30b0d50affcad3ecb16c997d1a6f961c382320b2 (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: 'list of features to execute tests against'     
        required: true
        default: 'go dotnet'
      baseImage: 
        description: 'Base image'     
        required: true
        default: 'ubuntu: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.3.0.tgz features-test -f ${{ github.event.inputs.features }} -i ${{ github.event.inputs.baseImage }} -d `pwd`