Skip to content

Commit c5dd6d8

Browse files
committed
GHA: Test pip install with Mingw64 python and gcc
1 parent 3574dd8 commit c5dd6d8

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/pip.yml

+21
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,24 @@ jobs:
4848

4949
- name: Test
5050
run: python tests/test.py
51+
52+
build-mingw64:
53+
runs-on: windows-latest
54+
defaults:
55+
run:
56+
shell: msys2 {0}
57+
steps:
58+
- uses: msys2/setup-msys2@v2
59+
with:
60+
update: true
61+
install: >-
62+
mingw-w64-x86_64-gcc
63+
mingw-w64-x86_64-python-pip
64+
65+
- uses: actions/checkout@v2
66+
67+
- name: Build and install
68+
run: pip install .
69+
70+
- name: Test
71+
run: python tests/test.py

0 commit comments

Comments
 (0)