Skip to content

Commit

Permalink
chore: update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelMunoz committed Nov 14, 2024
1 parent 16eda00 commit 95afc41
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/library.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ 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
uses: actions/setup-dotnet@v4
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

0 comments on commit 95afc41

Please sign in to comment.