diff --git a/.github/workflows/dotnet-format.yml b/.github/workflows/dotnet-format.yml index 022c19d..497b8f7 100644 --- a/.github/workflows/dotnet-format.yml +++ b/.github/workflows/dotnet-format.yml @@ -13,10 +13,6 @@ jobs: steps: - uses: actions/checkout@v6 - - name: Setup .NET - uses: actions/setup-dotnet@v5 - with: - dotnet-version: 10.0.x - name: Run dotnet format uses: wearerequired/lint-action@v2 with: diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 7431fd9..beccfd7 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -9,17 +9,8 @@ jobs: runs-on: ubuntu-latest - env: - # Enable color output from .NET CLI - DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: true - TERM: xterm - steps: - uses: actions/checkout@v6 - - name: Setup .NET - uses: actions/setup-dotnet@v5 - with: - dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build