aboutsummaryrefslogblamecommitdiff
path: root/.github/workflows/test.yaml
blob: 67b473e4d30629cfb53e6c901dbdb622fa80de2f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                          

                 
                                                      
                                                                              


                                 

                                                                                                                                  
name: "Test Features"
on: 
  push:
    branches:
    - main
  pull_request:
  workflow_dispatch:

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: " Testing '${{ matrix.features }}' against '${{ matrix.baseImage }}'"
        run: npx --yes ./dev-containers-cli-0.1.0.tgz features-test -f ${{ matrix.features }} -i ${{ matrix.baseImage }} -d `pwd`