Merge pull request #7 from ArturMarekNowak/feature/update-readme #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |