-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (26 loc) · 887 Bytes
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '8.0.x' ]
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1.7.2
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Install dependencies
run: dotnet restore gRPCGraphQLWebSockets/gRPCGraphQLWebSockets.csproj
- name: Build
run: dotnet build gRPCGraphQLWebSockets/gRPCGraphQLWebSockets.csproj --configuration Release --no-restore
- name: Install dependencies
run: dotnet restore SignalRClient/SignalRClient.csproj
- name: Build
run: dotnet build SignalRClient/SignalRClient.csproj --configuration Release --no-restore