Merge pull request #670 from snakers4/adamnsandle

fx
This commit is contained in:
Dimitrii Voronin
2025-08-25 16:25:39 +03:00
committed by GitHub

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