Skip to content

Поддержка Python 3.12 #638

Поддержка Python 3.12

Поддержка Python 3.12 #638

Workflow file for this run

name: Unit tests
on:
pull_request:
branches:
- main
jobs:
unit_tests:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ macos-latest, ubuntu-latest, windows-latest ]

Check failure on line 14 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 14
python-version: [ 3.7, 3.8, 3.9, "3.10", "3.11" "3.12" ]
steps:
- name: Checkout repository.
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}.
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies.
run: pip install -r requirements-dev.txt
- name: Test with pytest.
run: pytest -vv