From 0d627f8b2fc10d66ebed46cc137078c78481b366 Mon Sep 17 00:00:00 2001 From: Simon G <21110158+SimonG96@users.noreply.github.com> Date: Thu, 9 Dec 2021 12:30:04 +0100 Subject: [PATCH 1/4] - update used .net sdk version --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 926aeb7..ee38834 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 + - uses: actions/checkout@v1 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' - name: Build run: dotnet build @@ -20,7 +23,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v1 + - uses: actions/checkout@v1 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' - name: Run tests run: dotnet test From 604ed9b2ef176f3e83dcb26b97e93cf5b63c257b Mon Sep 17 00:00:00 2001 From: Simon G <21110158+SimonG96@users.noreply.github.com> Date: Thu, 9 Dec 2021 12:32:08 +0100 Subject: [PATCH 2/4] - remove wrong `-` --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee38834..e2d0db5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: steps: - name: Checkout - - uses: actions/checkout@v1 + uses: actions/checkout@v1 - uses: actions/setup-dotnet@v1 with: dotnet-version: '6.0.x' @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout - - uses: actions/checkout@v1 + uses: actions/checkout@v1 - uses: actions/setup-dotnet@v1 with: dotnet-version: '6.0.x' From e6109b1099c5558c31a61275abadbbdc1e791cbd Mon Sep 17 00:00:00 2001 From: Simon G <21110158+SimonG96@users.noreply.github.com> Date: Thu, 9 Dec 2021 12:48:02 +0100 Subject: [PATCH 3/4] - try fixing tests --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e2d0db5..1853a79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,9 +24,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 - - uses: actions/setup-dotnet@v1 - with: - dotnet-version: '6.0.x' - name: Run tests run: dotnet test From 3984c1fdd97832e10398e6e3c39690b3b96813c3 Mon Sep 17 00:00:00 2001 From: Simon G <21110158+SimonG96@users.noreply.github.com> Date: Thu, 9 Dec 2021 13:40:00 +0100 Subject: [PATCH 4/4] - revert --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1853a79..e2d0db5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: '6.0.x' - name: Run tests run: dotnet test