We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 816140e commit 84c1bd7Copy full SHA for 84c1bd7
1 file changed
.github/workflows/ci-workflow.yml
@@ -49,3 +49,30 @@ jobs:
49
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
50
run: |
51
uv run coveralls
52
+
53
+ mingw:
54
+ name: MinGW (MSYS2)
55
+ runs-on: windows-latest
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - name: Set up MSYS2 (MinGW64)
59
+ uses: msys2/setup-msys2@v2
60
+ with:
61
+ msystem: MINGW64
62
+ update: true
63
+ install: >-
64
+ mingw-w64-x86_64-python
65
+ mingw-w64-x86_64-python-pip
66
+ git
67
+ - name: Install dependencies
68
+ shell: msys2 {0}
69
+ run: |
70
+ python -m pip install -U pip
71
+ pip install -e .
72
+ pip install pytest pytest-cov
73
+ git config --global user.email user@example.com
74
+ git config --global user.name "Example User"
75
+ - name: Run test suite
76
77
78
+ pytest -v
0 commit comments