From 17d0d718af2f5c4cf5cb1b10eb59e809f16776ce Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 10:36:38 +0100 Subject: [PATCH 1/7] Create ci.yml Former-commit-id: d97a08181309a36c4542fd778c8be27bd92ab81a --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1 @@ + From 55dd041961b09dd9effc80ef6526661ca138fb61 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 10:46:30 +0100 Subject: [PATCH 2/7] Update ci.yml Former-commit-id: a7e24788626f10aeac39288ea46f4ca42d0340e8 --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b13789..602e45d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1 +1,16 @@ +name: CI +on: [pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Setup .NET Core + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 3.1.101 + - name: Build with dotnet + run: dotnet build + - name: Test with dotnet + run: dotnet test From c9dc111f1712d4f0513f0c7696e9dc04d225392c Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 10:46:58 +0100 Subject: [PATCH 3/7] Update ci.yml Former-commit-id: 90727eb22886bd6adb4c57ae6c9f1044ba733155 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 602e45d..d8d288c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: [pull_request] jobs: build: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, macos-latest, windows-latest] steps: - uses: actions/checkout@v1 - name: Setup .NET Core From c7eddb91c350b04908a65e10770013e3cb5046d1 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 10:55:09 +0100 Subject: [PATCH 4/7] Update .travis.yml Former-commit-id: d6aa7151d339d319ad455f2acacac36659889555 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a44cb8b..0983398 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: csharp mono: none -dotnet: 2.1.300 +dotnet: 3.1.101 os: - linux - osx From f89a3e2ef3a407281bdf4b3882a580a9ac631a44 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 10:59:08 +0100 Subject: [PATCH 5/7] Update ci.yml Former-commit-id: 95e5578bff136be310bd5dbf6f4c999b3b394cac --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8d288c..4c762cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ name: CI -on: [pull_request] +on: [push, pull_request] jobs: build: From 0d6acfebc8adb74e59e6c634c6d0fde805588ea6 Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 11:02:59 +0100 Subject: [PATCH 6/7] Update ci.yml Former-commit-id: b222340dcc765aaf1806369e165ac41f27d12235 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4c762cb..df5f86d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: build: - runs-on: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup .NET Core From 980fe8d74c425f666f52748ae351cf103115f59a Mon Sep 17 00:00:00 2001 From: Malte Rosenbjerg Date: Sun, 16 Feb 2020 11:03:51 +0100 Subject: [PATCH 7/7] Update .travis.yml Former-commit-id: 32fb4ec8359b92fd9df393e54ba2a762b828e9a1 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 0983398..1cb2185 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: csharp mono: none -dotnet: 3.1.101 +dotnet: 3.1 os: - linux - osx