Skip to content

Commit

Permalink
Repro the issue (actions/runner-images#11614)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Feb 23, 2025
0 parents commit fb6b89d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: tests
on: push
jobs:
test:
strategy:
matrix:
python:
- "3.13"
platform:
- ubuntu-latest
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install icmplib
run: python -m pip install icmplib
- name: Run
run: python -c "import icmplib; icmplib.ping('google.com', privileged=False)"

0 comments on commit fb6b89d

Please sign in to comment.