Skip to content

Commit

Permalink
Target net9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
antyrama committed Oct 28, 2024
1 parent 3c85d85 commit d3be507
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,23 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET Core 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Setup .NET Core 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Setup .NET Core 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,23 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup .NET Core 6.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
- name: Setup .NET Core 7.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.x'
- name: Setup .NET Core 8.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Setup .NET Core 9.0
uses: actions/setup-dotnet@v3
with:
dotnet-version: '9.0.x'
- name: Build
run: dotnet build --configuration Release
- name: Test
Expand Down

0 comments on commit d3be507

Please sign in to comment.