diff options
author | Josh Spicer <josh@joshspicer.com> | 2022-05-12 19:25:56 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-12 19:25:56 +0300 |
commit | 2707a37ca0d4a45c7487f856bf95f8c5e10bce94 (patch) | |
tree | 3b84759b62090e069c1352547fb8f1155f980122 /.github/workflows | |
parent | 9ec1eacf025434422bb7ab2d41addc6d66e22458 (diff) |
matrix (#10)
* try matrix
* quotes
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yaml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8d3e5ff..b4ffad7 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -9,8 +9,12 @@ on: jobs: test: runs-on: ubuntu-latest + strategy: + matrix: + features: [ "go", "dotnet", "go,dotnet" ] + baseImage: [ "mcr.microsoft.com/vscode/devcontainers/base:focal" ] 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 + - name: Invoke CLI testing ${{ matrix.features }} against ${{ matrix.baseImage }} + run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -c `pwd`/collection -f ${{ matrix.features }} |