mirror of https://github.com/dapr/quickstarts.git
Merge pull request #737 from amulyavarote/bindings_workflow_changes
Changes in bindings workflow
This commit is contained in:
commit
8ca5160fc7
|
@ -56,6 +56,11 @@ jobs:
|
|||
with:
|
||||
distribution: 'adopt'
|
||||
java-version: 11
|
||||
- name: Install .NET Core
|
||||
uses: actions/setup-dotnet@v1.9.0
|
||||
with:
|
||||
dotnet-version: |
|
||||
6.0.x
|
||||
- name: Determine latest Dapr Runtime version including Pre-releases
|
||||
run: |
|
||||
helm repo add dapr https://dapr.github.io/helm-charts/ && helm repo update && export RUNTIME_VERSION=$(helm search repo dapr/dapr --devel --versions | awk '/dapr\/dapr/ {print $3; exit}' )
|
||||
|
@ -131,16 +136,16 @@ jobs:
|
|||
pushd bindings/go/sdk
|
||||
make validate
|
||||
popd
|
||||
# - name: Validate .NET http Bindings
|
||||
# run: |
|
||||
# pushd bindings/csharp/http
|
||||
# make validate
|
||||
# popd
|
||||
# - name: Validate .NET sdk Bindings
|
||||
# run: |
|
||||
# pushd bindings/csharp/sdk
|
||||
# make validate
|
||||
# popd
|
||||
- name: Validate .NET http Bindings
|
||||
run: |
|
||||
pushd bindings/csharp/http
|
||||
make validate
|
||||
popd
|
||||
- name: Validate .NET sdk Bindings
|
||||
run: |
|
||||
pushd bindings/csharp/sdk
|
||||
make validate
|
||||
popd
|
||||
- name: Linkcheck README.md
|
||||
run: |
|
||||
make validate
|
||||
|
|
|
@ -303,7 +303,7 @@ Get the API call logs of the node app:
|
|||
|
||||
<!-- STEP
|
||||
expected_stdout_lines:
|
||||
- 'level=info msg="HTTP API Called: POST /v1.0/state/statestore"'
|
||||
- 'level=info msg="HTTP API Called: POST /v1.0/state/statestore'
|
||||
expected_stderr_lines:
|
||||
output_match_mode: substring
|
||||
name: Read nodeapp logs
|
||||
|
@ -326,7 +326,7 @@ Get the API call logs of the Python app:
|
|||
|
||||
<!-- STEP
|
||||
expected_stdout_lines:
|
||||
- 'level=info msg="HTTP API Called: POST /neworder"'
|
||||
- 'level=info msg="HTTP API Called: POST /neworder'
|
||||
expected_stderr_lines:
|
||||
output_match_mode: substring
|
||||
name: Read pythonapp logs
|
||||
|
|
Loading…
Reference in New Issue