Even more changes to bug report template #353
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: Project Build | |
on: [push] | |
jobs: | |
build-server: | |
strategy: | |
matrix: | |
version: | |
- 8.0.x | |
os: | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet ${{ matrix.version }} | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: ${{ matrix.version}} | |
- name: Build Game Server | |
run: make build-server | |
- name: Build Game Client | |
run: make build-client | |