Skip to content

Commit fe2772d

Browse files
committed
CI: Add experimental action that tries to execute a windows container
1 parent 5cd15b3 commit fe2772d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Windows Container Test
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
windows-container:
7+
runs-on: windows-latest
8+
9+
steps:
10+
- name: Checkout code
11+
uses: actions/checkout@v4
12+
13+
- name: Run command in Windows container
14+
run: |
15+
docker run --rm mcr.microsoft.com/windows/servercore:ltsc2022 cmd /c "echo Hello from Windows container && dir C:\"

0 commit comments

Comments
 (0)