This commit is contained in:
adamnsandle
2025-08-25 13:24:43 +00:00
parent 50be3744fe
commit aa2a66cf46

View File

@@ -2,9 +2,9 @@ name: Test Package
on:
workflow_dispatch: # запуск вручную
push:
branches:
- master # или любая тестовая ветка
#push:
# branches:
# - master # или любая тестовая ветка
jobs:
test:
@@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.8,3.9,3.10,3.11,3.12,3.13]
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
steps:
- uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install hatchling pytest
pip install build hatchling pytest
- name: Build package
run: python -m build --wheel --outdir dist