Skip to content

Commit f22fcbe

Browse files
committed
skip make validate on windows
Signed-off-by: Grant Linville <[email protected]>
1 parent b480699 commit f22fcbe

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ jobs:
3333
fi
3434
shell: bash
3535
- name: Validate
36-
run: make validate
36+
run: |
37+
if [ ${{ matrix.os }} != 'windows-latest' ]; then
38+
make validate
39+
fi
3740
- name: Build
3841
run: make build
3942
- name: Run Tests

0 commit comments

Comments
 (0)