We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3727c93 commit cdfd64fCopy full SHA for cdfd64f
.github/workflows/ci.yml
@@ -213,6 +213,27 @@ jobs:
213
name: coverage-${{ matrix.python_version }}
214
path: .coverage*
215
216
+ windows-test:
217
+ runs-on: windows-latest
218
+ timeout-minutes: 30
219
+ continue-on-error: true
220
+ steps:
221
+ - uses: actions/checkout@v4
222
+
223
+ - name: Set up Python 3.12
224
+ uses: actions/setup-python@v5
225
+ with:
226
+ python-version: '3.12'
227
228
+ - name: Install dependencies
229
+ run: |
230
+ pip install --upgrade pip
231
+ pip install --upgrade --editable .
232
233
+ - name: Sanity checks
234
235
+ python -bb -c 'from pwn import *'
236
+ python -bb examples/text.py
237
238
upload-coverage:
239
runs-on: ubuntu-latest
0 commit comments