Skip to content

Commit

Permalink
Add missing dotnet setup step
Browse files Browse the repository at this point in the history
Somehow the test job never had a dotnet setup step, and it just happened to always be on the current version of dotnet until we wanted to target .NET 8.
  • Loading branch information
nozzlegear committed Dec 9, 2023
1 parent 6ec7d74 commit a765dc6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ jobs:
&& sudo apt-get -qq update \
&& sudo apt-get -qq install fish parallel
- name: Setup dotnet
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
8.0.x
- name: Checkout branch
uses: actions/checkout@master

Expand Down

0 comments on commit a765dc6

Please sign in to comment.