vlingo-net / xoom-net-directory

Service registration and discovery for the VLINGO/PLATFORM.
Mozilla Public License 2.0
8 stars 7 forks source link

Add Travis integration #9

Closed tjaskula closed 4 years ago

tjaskula commented 4 years ago

Related to #11

According to the following template

language: csharp
jobs:
  include:
    - os: linux
      dotnet: 3.0.100
      mono: none
    - os: osx
      osx_image: xcode11
      dotnet: 3.0.100
      mono: none
sudo: false  # use the new container-based Travis infrastructure
script:
  - dotnet restore ./src/Vlingo.UUID.sln;
    dotnet build ./src/Vlingo.UUID.sln;
    dotnet test ./src/Vlingo.UUID.Tests/Vlingo.UUID.Tests.csproj;

notifications:
  slack: vlingo-platform-net:kwiEEBuUpRnz2rYYYstTBpXr
tjaskula commented 4 years ago

11