Unverified Commit 3a277ad7 authored by Josh Spicer's avatar Josh Spicer Committed by GitHub

restructure and update cli (#11)

* restructure and update cli

* typo
parent 2707a37c
...@@ -16,5 +16,5 @@ jobs: ...@@ -16,5 +16,5 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Invoke CLI testing ${{ matrix.features }} against ${{ matrix.baseImage }} - name: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'"
run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -c `pwd`/collection -f ${{ matrix.features }} run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -d `pwd`
#!/bin/bash
set -e
echo 'Testing dotnet!'
dotnet --list-sdks
echo 'Done!'
\ No newline at end of file
#!/bin/bash
set -e
go version
echo 'Done!'
\ No newline at end of file
#!/bin/bash
set -e
# Import test library
source featuresTest.library.sh root
# Definition specific tests
check "dotnet" dotnet --info
check "sdks" dotnet --list-sdks
# Report result
reportResults
\ No newline at end of file
#!/bin/bash
set -e
# Import test library
source featuresTest.library.sh root
check "version" go version
# Report result
reportResults
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment