Skip to content

Commit e0f37da

Browse files
committed
Repro the issue.
0 parents  commit e0f37da

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: tests
2+
on: push
3+
jobs:
4+
test:
5+
strategy:
6+
matrix:
7+
python:
8+
- "3.13"
9+
platform:
10+
- ubuntu-latest
11+
runs-on: ${{ matrix.platform }}
12+
steps:
13+
- uses: actions/checkout@v4
14+
- name: Setup Python
15+
uses: actions/setup-python@v4
16+
with:
17+
python-version: ${{ matrix.python }}
18+
- name: Install icmplib
19+
run: python -m pip install icmplib
20+
- name: Run
21+
run: python -c "import icmplib; icmplib.ping('google.com')"

0 commit comments

Comments
 (0)