forked from fsprojects/fsharp-language-server
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6bfbf79
commit e242d2b
Showing
1 changed file
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
|
||
image: | ||
- Visual Studio 2017 | ||
- Ubuntu | ||
- Visual Studio 2017 | ||
init: | ||
# Good practise, because Windows line endings are different from Unix/Linux ones | ||
- cmd: git config --global core.autocrlf true | ||
# Good practice, because Windows line endings are different from Unix/Linux ones | ||
- sh: git config --global core.autocrlf true | ||
before_build: | ||
# Display .NET Core version | ||
- cmd: dotnet --version | ||
- cmd: dotnet restore | ||
- sh: dotnet --version | ||
- sh: dotnet restore | ||
build_script: | ||
- cmd: dotnet build | ||
- sh: dotnet build | ||
before_test: | ||
- cmd: bash scripts/restore.sh | ||
- sh: bash scripts/restore.sh | ||
test_script: | ||
- cmd: dotnet test | ||
- sh: dotnet test |