- [X] Updates Zlib Bindings - [X] Updates Argon2 Bindings - [X] Drops .NET Core 3.1 support - [X] Updates CI/CD Bumps release version Updates documentation
33 lines
812 B
YAML
33 lines
812 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- os: macos-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0 # avoid shallow clone so nbgv can do its work.
|
|
- name: Setup .NET 5
|
|
uses: actions/setup-dotnet@v1
|
|
with:
|
|
dotnet-version: 5.0.100
|
|
- name: Restore NuGet Packages
|
|
run: dotnet restore --force-evaluate
|
|
- name: Build Server
|
|
run: dotnet build -c Release --no-restore Projects/Server/Server.csproj
|
|
- name: Build UO Content
|
|
run: dotnet build -c Release --no-restore Projects/UOContent/UOContent.csproj
|
|
- name: Test
|
|
run: dotnet test --no-restore
|