Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

hmlendea/ck2-mod-tests

Repository files navigation

Build Status

CK2 Mod Tests

CK2 Mod unit tests, intended to be used with Travis-CI for GIT repositories of any CK2 mod

Usage

You will need to add this repository as a submodule into your repository You will then need to create a .travis.yml file to instruct Travis to run the tests

For adding the submodule:

git submodule add https://github.com/hmlendea/ck2-mod-tests.git
git submodule init
git submodule update

The required .travis.yml file

language: csharp
mono: none
dotnet: 2.2
dist: xenial

install:
- dotnet restore ck2-mod-tests

script:
 - dotnet build ck2-mod-tests
 - dotnet test ck2-mod-tests
 

Update the submodule to the latest version using:

git submodule update --remote --merge

Releases

No releases published

Packages

No packages published

Languages