Skip to content

Commit

Permalink
Install required .NET versions for GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros authored Jun 1, 2023
1 parent 06873a3 commit 09aeaaf
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,14 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v3

- name: Install required .NET versions
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: Test
run: dotnet test --configuration Release
9 changes: 9 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,15 @@ jobs:
- name: Checkout source code
uses: actions/checkout@v3

- name: Install required .NET versions
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
- name: Test
run: dotnet test --configuration Release

Expand Down

0 comments on commit 09aeaaf

Please sign in to comment.