6
6
name : Spell Check with Typos
7
7
strategy :
8
8
matrix :
9
- os : [ubuntu-latest, macos-latest]
9
+ os : [ubuntu-latest, macos-latest, windows-latest ]
10
10
runs-on : ${{ matrix.os }}
11
11
steps :
12
12
- name : Checkout Actions Repository
13
13
uses : actions/checkout@v4
14
14
15
+ - name : Install wget for Windows
16
+ if : matrix.os == 'windows-latest'
17
+ run : choco install wget --no-progress
18
+
15
19
- name : Prepare file with mistakes.
16
20
run : echo "Finallizes" > file.txt
17
21
- name : Test force pass with mistakes
@@ -31,14 +35,18 @@ jobs:
31
35
name : Spell Check with Type w/History
32
36
strategy :
33
37
matrix :
34
- os : [ubuntu-latest, macos-latest]
38
+ os : [ubuntu-latest, macos-latest, windows-latest ]
35
39
runs-on : ${{ matrix.os }}
36
40
steps :
37
41
- name : Checkout Actions Repository
38
42
uses : actions/checkout@v4
39
43
with :
40
44
fetch-depth : 0
41
45
46
+ - name : Install wget for Windows
47
+ if : matrix.os == 'windows-latest'
48
+ run : choco install wget --no-progress
49
+
42
50
- name : Prepare file with mistakes.
43
51
run : echo "Finallizes" > file.txt
44
52
- name : Test force pass with mistakes
0 commit comments