forked from runxc1/MicroRuleEngine
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathappveyor.yml
More file actions
28 lines (28 loc) · 696 Bytes
/
appveyor.yml
File metadata and controls
28 lines (28 loc) · 696 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
version: '1.0.{build}'
image: Visual Studio 2019
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
init:
# Good practice, because Windows line endings are different from Unix/Linux ones
- cmd: git config --global core.autocrlf true
install:
-
before_build:
# Display .NET Core version
- cmd: dotnet --version
# Display minimal restore text
- cmd: dotnet restore
build_script:
- cmd: dotnet build
after_build:
# For once the build has completed
test_script:
- cmd: nuget install Appveyor.TestLogger
- cmd: dotnet test --no-build --no-restore --test-adapter-path:. --logger:Appveyor
clone_depth: 1
on_finish :
# any cleanup in here
deploy: off