From 266e1539fae77e14ef1787075a289ddbce5077d2 Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Thu, 18 Apr 2024 14:10:33 +0200 Subject: [PATCH] update ci --- .github/workflows/build-test.yml | 14 +++++++------- codecov.yml | 20 -------------------- 2 files changed, 7 insertions(+), 27 deletions(-) delete mode 100644 codecov.yml diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index bbb4ca25..cf186b05 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -12,11 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.x.x + dotnet-version: 8.x.x - name: make script executable run: chmod u+x build.sh - name: Build and test @@ -28,16 +28,16 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup .NET - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 6.x.x + dotnet-version: 8.x.x - name: Build and test working-directory: ./ run: ./build.cmd runtestswithcodecov - name: Upload coverage to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v4 with: directory: ./ files: ./codeCov.xml diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index eef32125..00000000 --- a/codecov.yml +++ /dev/null @@ -1,20 +0,0 @@ -codecov: - require_ci_to_pass: yes - -coverage: - precision: 2 - round: down - range: "0...100" - -parsers: - gcov: - branch_detection: - conditional: yes - loop: yes - method: no - macro: no - -comment: - layout: "reach,diff,flags,tree" - behavior: default - require_changes: no \ No newline at end of file