diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 954b430..547b933 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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