Skip to content

Provide entity support for direct grpc connections to DTS #907

Provide entity support for direct grpc connections to DTS

Provide entity support for direct grpc connections to DTS #907

Workflow file for this run

name: Validate Build
on:
push:
branches:
- main
- 'feature/**'
paths-ignore: [ '**.md' ]
pull_request:
branches:
- main
- 'feature/**'
paths-ignore: [ '**.md' ]
env:
solution: Microsoft.DurableTask.sln
config: release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Setup .NET from global.json
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Restore dependencies
run: dotnet restore $env:solution
- name: Build
run: dotnet build $env:solution --configuration $env:config --no-restore -p:FileVersionRevision=$env:GITHUB_RUN_NUMBER
- name: Test
run: dotnet test $env:solution --configuration $env:config --no-build --verbosity normal
- name: Pack
run: dotnet pack $env:solution --configuration $env:config --no-build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: pkg
path: out/pkg