From 95afc4164d660ac2540249590435043e4315a360 Mon Sep 17 00:00:00 2001 From: "Angel D. Munoz" Date: Thu, 14 Nov 2024 10:29:27 -0600 Subject: [PATCH] chore: update CI --- .github/workflows/docs.yml | 2 +- .github/workflows/library.yml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 7d21588..0d114c5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,7 +22,7 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 9.0.x - name: Restore tools run: dotnet tool restore - name: Build code diff --git a/.github/workflows/library.yml b/.github/workflows/library.yml index e1e7f01..22a48cd 100644 --- a/.github/workflows/library.yml +++ b/.github/workflows/library.yml @@ -17,19 +17,19 @@ on: jobs: build: runs-on: ubuntu-latest - name: Build dotnet 8.0 + name: Build dotnet 9.0 steps: - uses: actions/checkout@v4 - name: Setup dotnet uses: actions/setup-dotnet@v4 with: - dotnet-version: "8.0.x" + dotnet-version: "9.0.x" - run: dotnet restore - - run: dotnet build Navs.sln -f net8.0 --configuration Release --no-restore - - run: dotnet test Navs.sln -f net8.0 --no-restore - buildnet6: + - run: dotnet build Navs.sln -f net9.0 --configuration Release --no-restore + - run: dotnet test Navs.sln -f net9.0 --no-restore + build8: runs-on: ubuntu-latest - name: Build dotnet 9.0 + name: Build dotnet 8.0 steps: - uses: actions/checkout@v4 - name: Setup dotnet @@ -37,5 +37,5 @@ jobs: with: dotnet-version: "9.0.x" - run: dotnet restore - - run: dotnet build Navs.sln -f net9.0 --configuration Release --no-restore - - run: dotnet test Navs.sln -f net9.0 --no-restore + - run: dotnet build Navs.sln -f net8.0 --configuration Release --no-restore + - run: dotnet test Navs.sln -f net8.0 --no-restore