66 name : Spell Check with Typos
77 strategy :
88 matrix :
9- os : [ubuntu-latest, macos-latest]
9+ os : [ubuntu-latest, macos-latest, windows-latest ]
1010 runs-on : ${{ matrix.os }}
1111 steps :
1212 - name : Checkout Actions Repository
1313 uses : actions/checkout@v4
1414
15+ - name : Install wget for Windows
16+ if : matrix.os == 'windows-latest'
17+ run : choco install wget --no-progress
18+
1519 - name : Prepare file with mistakes.
1620 run : echo "Finallizes" > file.txt
1721 - name : Test force pass with mistakes
@@ -31,14 +35,18 @@ jobs:
3135 name : Spell Check with Type w/History
3236 strategy :
3337 matrix :
34- os : [ubuntu-latest, macos-latest]
38+ os : [ubuntu-latest, macos-latest, windows-latest ]
3539 runs-on : ${{ matrix.os }}
3640 steps :
3741 - name : Checkout Actions Repository
3842 uses : actions/checkout@v4
3943 with :
4044 fetch-depth : 0
4145
46+ - name : Install wget for Windows
47+ if : matrix.os == 'windows-latest'
48+ run : choco install wget --no-progress
49+
4250 - name : Prepare file with mistakes.
4351 run : echo "Finallizes" > file.txt
4452 - name : Test force pass with mistakes
0 commit comments