forked from OrleansContrib/Orleans.Providers.EntityFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
26 lines (24 loc) · 635 Bytes
/
appveyor.yml
File metadata and controls
26 lines (24 loc) · 635 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
version: '{build}'
image: Visual Studio 2022
branches:
only:
- master
init:
- cmd: git config --global core.autocrlf true
install:
before_build:
- cmd: dotnet --version
- cmd: dotnet restore --verbosity m
build_script:
- cmd: dotnet pack .\src\Orleans.Persistence.EntityFramework -c debug -o .\src\Orleans.Persistence.EntityFramework\publish
after_build:
artifacts:
- path: '**\*.nupkg'
name: Orleans.Persistence.EntityFramework
type: NuGetPackage
clone_depth: 1
test_script:
- cmd: dotnet restore --verbosity m
- cmd: dotnet test .\test\Orleans.Persistence.EntityFramework.UnitTests
on_finish :
deploy: off