Skip to content

Bump MySql.Data from 8.1.0 to 8.2.0 in /src/server #183

Bump MySql.Data from 8.1.0 to 8.2.0 in /src/server

Bump MySql.Data from 8.1.0 to 8.2.0 in /src/server #183

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