diff --git a/README.md b/README.md index 3dd630b..215bbbc 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,7 @@ There are many tools out there, but most of them are interested in commits per a GitNStats is an experiment in analyzing how often particular files in a repositor change (and how big those changes were). The idea is to discover "hotspots" in a code base by determining which files have a lot of churn. +[![Build status](https://ci.appveyor.com/api/projects/status/5ncbrrsob8t44bc5/branch/master?svg=true)](https://ci.appveyor.com/project/Rubberduck/gitnstats/branch/master) ## Quickstart diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..51526b6 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,17 @@ +version: 2.0.0.{build} +pull_requests: + do_not_increment_build_number: true +image: Visual Studio 2017 +configuration: Release +init: +- cmd: tzutil /s "Eastern Standard Time" +build_script: +- cmd: >- + dotnet restore + + dotnet build -c Release +test_script: +- cmd: >- + dotnet test tests/gitnstats.core.tests/gitnstats.core.tests.csproj + + dotnet test tests/gitnstats.test/gitnstats.test.csproj \ No newline at end of file