From 778aea178eac5b2f7f85777573e065d2fb365e71 Mon Sep 17 00:00:00 2001 From: Scott Sauber Date: Mon, 18 Nov 2024 12:21:19 -0500 Subject: [PATCH] add dotnet setup --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcfd6bf..965052e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,11 @@ jobs: - name: Checkout repo uses: actions/checkout@v4 + - name: Setup dotnet + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 9.0.x + - name: Run dotnet test run: | dotnet test -c Release