Skip to content

Commit

Permalink
Install .NET dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bijington committed Feb 28, 2024
1 parent 74c1a6f commit 986e38f
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,18 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 2.1.X Core
uses: actions/setup-dotnet@v1
- name: Setup .NET 6.X
uses: actions/setup-dotnet@v2
with:
dotnet-version: 2.1.x
- name: Setup .NET 3.1.X Core
uses: actions/setup-dotnet@v1
dotnet-version: 6.x
- name: Setup .NET 7.X
uses: actions/setup-dotnet@v2
with:
dotnet-version: 3.1.x
dotnet-version: 7.x
- name: Setup .NET 8.X
uses: actions/setup-dotnet@v2
with:
dotnet-version: 8.x
- name: where are we?
run: ls
- name: Install dependencies
Expand Down

0 comments on commit 986e38f

Please sign in to comment.