Merge pull request #39 from mjun0812/chore/check-glibc-version

chore: add chack glibc version in GHA
This commit is contained in:
Junya Morioka
2025-10-15 16:47:17 +09:00
committed by GitHub
+19
View File
@@ -0,0 +1,19 @@
name: Build wheels and upload to GitHub Releases
on:
workflow_dispatch:
jobs:
create_releases:
name: Create Releases
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}
- shell: bash
run: |
python -c "import platform, os; print(platform.libc_ver())"