Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: .NET Core

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.300
- name: Install dependencies
run: dotnet restore RestApi.sln
- name: Build
run: dotnet build --configuration Release --no-restore RestApi.sln
- name: Test
run: dotnet test --no-restore --verbosity normal RestApi.sln
2 changes: 1 addition & 1 deletion RestApi.Test/SetUp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace RestApi.Test
[SetUpFixture]
public class SetUp
{
public const int ApiServiceStartUpTimeoutSeconds = 7;
public const int ApiServiceStartUpTimeoutSeconds = 60;
public static Task ApiService;

public const string ApiServiceBaseUrl = "https://localhost:62184";
Expand Down