This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
Fix kubeconfig #44
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI - Test Features" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- oh-my-posh | |
- bash-completion | |
- kube-config | |
- protoc | |
baseImage: | |
- debian:latest | |
- ubuntu:latest | |
- mcr.microsoft.com/devcontainers/base:ubuntu | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Create prerequisites" | |
run: mkdir ~/.kube | |
- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" | |
run: devcontainer features test --skip-scenarios -f ${{ matrix.features }} -i ${{ matrix.baseImage }} . | |
test-scenarios: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
strategy: | |
matrix: | |
features: | |
- oh-my-posh | |
- bash-completion | |
- kube-config | |
- helm-repos | |
- protoc | |
- docker-scout | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Install latest devcontainer CLI" | |
run: npm install -g @devcontainers/cli | |
- name: "Create prerequisites" | |
run: mkdir ~/.kube | |
- name: "Generating tests for '${{ matrix.features }}' against '${{ matrix.baseImage }}'" | |
run: devcontainer features test -f ${{ matrix.features }} --skip-autogenerated . |