Merge pull request #737 from amulyavarote/bindings_workflow_changes

Changes in bindings workflow
This commit is contained in:
Paul Yuknewicz 2022-10-03 14:47:02 -07:00 committed by GitHub
commit 8ca5160fc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 12 deletions

View File

@ -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

View File

@ -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