19 lines
506 B
YAML
19 lines
506 B
YAML
name: Docker Test
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: windows
|
|
container:
|
|
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
|
|
ACTIONS_RUNNER_REQUIRE_LINUX: "false" # Disable Linux-specific behavior
|
|
steps:
|
|
- name: Test Docker
|
|
run: |
|
|
docker --version
|
|
hostname |