Skip to content

feat: add Linux binary wheels #1207

feat: add Linux binary wheels

feat: add Linux binary wheels #1207

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: ${{ matrix.python-version }}
- uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- uses: ./.github/actions/install-gammu
- name: Install
run: uv sync --all-extras --dev
- name: Test
run: uv run pytest --cov
- name: Examples
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
source .venv/bin/activate
./examples/run-dummy.sh
- uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
with:
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}