2023-02-12 21:24:22 +00:00
|
|
|
name: Build Client & Server
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'Pal.Client/**'
|
|
|
|
- 'Pal.Common/**'
|
|
|
|
- 'Pal.Server/**'
|
|
|
|
- 'vendor/**'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-02-12 21:32:22 +00:00
|
|
|
with:
|
|
|
|
submodules: true
|
2023-02-12 21:24:22 +00:00
|
|
|
|
|
|
|
- name: Setup .NET SDK
|
|
|
|
uses: actions/setup-dotnet@v3
|
|
|
|
with:
|
|
|
|
dotnet-version: 7.0
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: dotnet restore
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: dotnet build --configuration Release --no-restore
|