diff options
author | Josh Spicer <josh@joshspicer.com> | 2022-05-12 00:34:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 00:34:49 +0300 |
commit | d9c4c137e1bbff48328900fceb556fa13cff2b80 (patch) | |
tree | 0bfe61ae8d7652c4ceda8b38d766bace63bcaed7 /.github/workflows | |
parent | 4e303a64de2ef7c51ac061e235b7b7df53a4dc17 (diff) |
test workflow invoking `devcontainer-cli features-test...` (#7)
* test go
* paths
* need a dot
* rename
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml new file mode 100644 index 0000000..8d3e5ff --- /dev/null +++ b/.github/workflows/test.yaml @@ -0,0 +1,16 @@ +name: "Test Features" +on: + push: + branches: + - main + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Invoke devcontainer-cli features-test + run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -c `pwd`/collection -f go |