Skip to content

Commit cdfd64f

Browse files
authored
Install pwntools on Windows and import it once (#2450)
This is just a basic smoke test for now.
1 parent 3727c93 commit cdfd64f

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,27 @@ jobs:
213213
name: coverage-${{ matrix.python_version }}
214214
path: .coverage*
215215

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+
run: |
235+
python -bb -c 'from pwn import *'
236+
python -bb examples/text.py
216237
217238
upload-coverage:
218239
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)