Skip to content

Fix dialog InvalidOperationException #57

Fix dialog InvalidOperationException

Fix dialog InvalidOperationException #57

Workflow file for this run

name: dotnet
on:
push:
branches: [ master ]
paths:
- .github/workflows/dotnet.yml
- src/**
- '!src/SampSharp/**'
- SampSharp.sln
- Makefile
pull_request:
branches: [ master ]
paths:
- .github/workflows/dotnet.yml
- src/**
- '!src/SampSharp/**'
- SampSharp.sln
- Makefile
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore SampSharp.sln
- name: Build
run: dotnet build SampSharp.sln --no-restore
- name: Test
run: dotnet test SampSharp.sln --no-build --verbosity normal