Fix Linux paths unable to be found if uppercase in base file systems #1049
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| pull_request: | |
| branches: [ master ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| tests: | |
| runs-on: [ windows-latest ] | |
| steps: | |
| - name: Full Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| clean: true | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.0.x' | |
| - name: Build | |
| run: dotnet run --project .\engine\Tools\SboxBuild\SboxBuild.csproj -- build --config Developer | |
| - name: Test | |
| run: dotnet run --project .\engine\Tools\SboxBuild\SboxBuild.csproj -- test |