Update .gitea/workflows/docker-test.yml
Some checks failed
Docker Test / test (push) Has been cancelled

This commit is contained in:
monheim 2025-04-20 23:16:51 +02:00
parent 872c4cae13
commit 79da56c9e7

View File

@ -3,10 +3,14 @@ on: [push]
jobs:
test:
runs-on: windows # Your Windows runner label
runs-on: windows-host
container:
image: mcr.microsoft.com/windows/servercore:ltsc2019 # Windows Server 2019 base image
options: --isolation=process # Required for Windows containers
image: mcr.microsoft.com/windows/servercore:ltsc2019
options: >-
--isolation=process
-v C:\toolcache:C:\toolcache # Windows-style volume mount
env:
RUNNER_TOOL_CACHE: C:\toolcache # Override Linux default path
steps:
- name: Test Docker
run: |