diff options
author | Josh Spicer <joshspicer@github.com> | 2022-05-13 03:33:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-13 03:33:47 +0300 |
commit | 218fd90e83a22cc3b2d8047a23c6d4f2756451b7 (patch) | |
tree | c45520e40bca04240e9d6bbe2af4d332b2f94ce3 /.github/workflows | |
parent | 41a092597b186efd5c328d92c7bf6be807f75b58 (diff) |
test flow manual
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test-manual.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/test-manual.yaml b/.github/workflows/test-manual.yaml new file mode 100644 index 0000000..1c8ed2c --- /dev/null +++ b/.github/workflows/test-manual.yaml @@ -0,0 +1,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` |