File tree Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Expand file tree Collapse file tree 1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : test
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ test-powershell :
7
+ name : Test WindowsPowerShell
8
+ runs-on : windows-latest
9
+ steps :
10
+ - name : Setup Scoop
11
+ uses : MinoruSekine/setup-scoop@v4
12
+
13
+ - name : Checkout
14
+ uses : actions/checkout@v4
15
+
16
+ - name : Install xn bucket
17
+ shell : powershell
18
+ run : scoop bucket add xn https://github.com/Pengxn/xn
19
+
20
+ - name : Init and Test
21
+ shell : powershell
22
+ run : .\test\Install-Test.ps1
23
+
24
+ test-pwsh :
25
+ name : Test PowerShell Core
26
+ runs-on : windows-latest
27
+ steps :
28
+ - name : Setup Scoop
29
+ uses : MinoruSekine/setup-scoop@v4
30
+
31
+ - name : Checkout
32
+ uses : actions/checkout@v4
33
+
34
+ - name : Install xn bucket
35
+ shell : powershell
36
+ run : scoop bucket add xn https://github.com/Pengxn/xn
37
+
38
+ - name : Init and Test
39
+ shell : pwsh
40
+ run : .\test\Install-Test.ps1
You can’t perform that action at this time.
0 commit comments