mirror of https://github.com/dapr/quickstarts.git
Merge pull request #667 from amulyavarote/validation_failure_fix
Testing the worlflow
This commit is contained in:
commit
3aea5f8ed5
|
@ -85,7 +85,7 @@ jobs:
|
|||
run: |
|
||||
brew install kubernetes-cli || brew link --overwrite kubernetes-cli
|
||||
brew install minikube
|
||||
minikube start --driver=virtualbox --memory 4096 --host-only-cidr "192.168.59.1/24"
|
||||
minikube start --driver=virtualbox --memory 8192 --host-only-cidr "192.168.59.1/24"
|
||||
- name: Get KinD info
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
|
@ -142,31 +142,37 @@ jobs:
|
|||
make validate
|
||||
popd
|
||||
- name: Validate hello-kubernetes
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/hello-kubernetes
|
||||
make validate
|
||||
popd
|
||||
- name: Validate distributed-calculator
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/distributed-calculator
|
||||
make validate
|
||||
popd
|
||||
- name: Validate pub-sub
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/pub-sub
|
||||
make validate
|
||||
popd
|
||||
- name: Validate bindings
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/bindings
|
||||
make validate
|
||||
popd
|
||||
- name: Validate secretstore
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/secretstore
|
||||
make validate
|
||||
popd
|
||||
- name: Validate observability
|
||||
if: matrix.os == 'ubuntu-latest'
|
||||
run: |
|
||||
pushd tutorials/observability
|
||||
make validate
|
||||
|
|
Loading…
Reference in New Issue