Skip to content

Bump Dapper from 2.0.143 to 2.1.15 in /src/server #181

Bump Dapper from 2.0.143 to 2.1.15 in /src/server

Bump Dapper from 2.0.143 to 2.1.15 in /src/server #181

Workflow file for this run

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