We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5cd15b3 commit fe2772dCopy full SHA for fe2772d
1 file changed
.github/workflows/windows-container.yml
@@ -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