Skip to content

Merge branch 'development' into nova/anomaly-release-port #3

Merge branch 'development' into nova/anomaly-release-port

Merge branch 'development' into nova/anomaly-release-port #3

Workflow file for this run

name: Project Build
on: [push]
jobs:
build-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 7.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Display dotnet version
run: dotnet build Source/Server/GameServer.csproj
build-client:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet 7.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Display dotnet version
run: dotnet build Source/Client/GameClient.csproj