Skip to content

Distributed Cache Tests #1923

Distributed Cache Tests

Distributed Cache Tests #1923

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