diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 20d2209..0c97d95 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,15 @@ on: [push, pull_request] jobs: build: runs-on: ubuntu-latest - container: - image: mcr.microsoft.com/dotnet/sdk:10.0 steps: - uses: actions/checkout@v4 + - name: Setup .NET + uses: actions/setup-dotnet@v4 + with: + dotnet-version: 10.0.x + - name: Run tests run: | dotnet test