From 96204e7a437e360dd839cce214c416ce7788fbd5 Mon Sep 17 00:00:00 2001 From: Douglas Miller Date: Thu, 6 Feb 2025 14:55:42 -0600 Subject: [PATCH] Testing --- .github/workflows/ci.yml | 4 ++-- scripts/build | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed963f84..a36ffdbc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,11 @@ jobs: name: Dotnet ${{ matrix.dotnet }} tests strategy: matrix: - dotnet: [2.2.x] + dotnet: [2.2.x, 3.1.x] steps: - uses: actions/checkout@v3 - name: Setup dotnet - uses: actions/setup-dotnet@v2 + uses: actions/setup-dotnet@v4 with: dotnet-version: ${{ matrix.dotnet }} - run: ./scripts/build diff --git a/scripts/build b/scripts/build index 1af36622..8c22253f 100755 --- a/scripts/build +++ b/scripts/build @@ -3,6 +3,7 @@ set -e if ! command -v dotnet-format; then echo "Installing dotnet formatter..." + export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 dotnet tool install -g dotnet-format --version 4.0.0 fi