Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
- "3.12"
- "3.13"
- "3.14"
env:
# renovate: datasource=github-releases depName=gammu/gammu versioning=loose
GAMMU_VERSION: 1.43.2

steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand All @@ -47,7 +50,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install Gammu x64
run: |
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://dl.cihar.com/gammu/releases/windows/Gammu-1.41.0-Windows-64bit.exe
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://github.com/gammu/gammu/releases/download/$Env:GAMMU_VERSION/Gammu-$Env:GAMMU_VERSION-Windows-Minimal.exe
./gammu-setup.exe /S /D=C:/Gammu
- uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
- name: build
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- "3.12"
- "3.13"
- "3.14"
env:
# renovate: datasource=github-releases depName=gammu/gammu versioning=loose
GAMMU_VERSION: 1.43.2
name: ${{ matrix.os }}, Python ${{ matrix.python-version }}

steps:
Expand All @@ -36,7 +39,7 @@ jobs:
- name: Install Gammu
if: ${{ matrix.os == 'windows-latest' }}
run: |
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://dl.cihar.com/gammu/releases/windows/Gammu-1.41.0-Windows-64bit.exe
C:/msys64/usr/bin/wget.exe -O gammu-setup.exe https://github.com/gammu/gammu/releases/download/$Env:GAMMU_VERSION/Gammu-$Env:GAMMU_VERSION-Windows-Minimal.exe
./gammu-setup.exe /S /D=C:/Gammu
- name: Install
run: uv sync --all-extras --dev
Expand Down