Skip to content

Commit

Permalink
setup .net
Browse files Browse the repository at this point in the history
  • Loading branch information
DomCR committed Jan 24, 2025
1 parent 2f8553e commit 8280b99
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build_n_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ defaults:
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
dotnet-version: [ '5.0.x', '6.0.x' ]

steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -24,10 +28,10 @@ jobs:
with:
envFile: 'github.env'

- name: Install .NET
uses: codebeltnet/install-dotnet@v1
- name: Setup dotnet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v3
with:
includePreview: true
dotnet-version: ${{ matrix.dotnet-version }}

- name: Build and test
run: dotnet restore
Expand Down

0 comments on commit 8280b99

Please sign in to comment.