mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
16 lines
451 B
YAML
16 lines
451 B
YAML
language: csharp
|
|
solution: osu-framework.sln
|
|
mono:
|
|
- latest
|
|
before_install:
|
|
- git submodule update --init --recursive
|
|
install:
|
|
- nuget restore osu-framework.sln
|
|
- nuget install NUnit.Runners -Version 3.4.1 -OutputDirectory testrunner
|
|
script:
|
|
- xbuild osu-framework.sln
|
|
- |
|
|
mono \
|
|
./testrunner/NUnit.ConsoleRunner.3.4.1/tools/nunit3-console.exe \
|
|
./osu.Framework.Tests/osu.Framework.Tests.csproj
|