Happy New Year 2025 from everyone at getMangos.eu 🎉 #190
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: Build MangosSharp | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
Solution_Path: ./src/server/Mangos.sln | |
steps: | |
- name: Install .NET sdk | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 7.0.x | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Restore | |
run: dotnet restore $Solution_Path | |
- name: Build | |
run: dotnet build --no-restore $Solution_Path | |
- name: Test | |
run: dotnet test --no-build --no-restore $Solution_Path | |
- name: Verify | |
run: dotnet format --verify-no-changes --no-restore $Solution_Path |