Skip to content

Update test_client.yml #176

Update test_client.yml

Update test_client.yml #176

Workflow file for this run

name: client build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
DOTNET_VERSION: '6.0.401' # The .NET SDK version to use
jobs:
build:
name: build-${{matrix.os}}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Install dependencies
run: dotnet restore ./src/Korpi/Client/Client.csproj
- name: Build
run: dotnet build --configuration Release --no-restore ./src/Korpi/Client/Client.csproj