Distributed Cache Tests #1923
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: Distributed Cache Tests | |
| on: | |
| schedule: | |
| # Run hourly | |
| - cron: '0 * * * *' | |
| workflow_dispatch: | |
| inputs: | |
| run_seeding_tests: | |
| description: 'Run GitHub Runner seeding tests' | |
| required: false | |
| default: true | |
| type: boolean | |
| jobs: | |
| seeding-tests: | |
| name: GitHub Runner Seeding Tests | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 360 # 6 hours max | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: '9.0.x' | |
| - name: Restore dependencies | |
| run: dotnet restore | |
| - name: Build | |
| run: dotnet build --no-restore | |
| - name: Run GitHub Runner Seeding Tests | |
| run: | | |
| dotnet test KOTORModSync.Tests/KOTORModSync.Tests.csproj \ | |
| --filter "FullyQualifiedName~GitHubRunnerSeeding" \ | |
| --no-build \ | |
| --verbosity normal |