We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 816140e commit 56f338dCopy full SHA for 56f338d
.github/workflows/ci-workflow.yml
@@ -49,3 +49,28 @@ 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
+ - name: Run test suite
74
75
76
+ pytest -v --cov=PyGitUp
0 commit comments