-
-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy path.travis.yml
More file actions
36 lines (28 loc) · 667 Bytes
/
.travis.yml
File metadata and controls
36 lines (28 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#
# KeraLua Travis-CI Hook
#
language: csharp
dotnet: 3.1
before_install:
- export PATH=/opt/mono/bin:$PATH
install:
- sudo apt-get install mono-devel nunit nuget
script:
- nuget restore KeraLua.sln
- msbuild KeraLua.sln /p:Configuration=Release /t:Restore
- msbuild KeraLua.sln /p:Configuration=Release
- dotnet test ./tests/build/net46/bin/Release/KeraLuaTest.dll
# Execute additional tests or commands
#after_script:
# - [run additional test commans]
# Only watch the main branch
branches:
only:
- main
# Notify if needed
notifications:
recipients:
email:
on_success: change
on_failure: always