Skip to content

just use 3.10 for now for test #39

just use 3.10 for now for test

just use 3.10 for now for test #39

Workflow file for this run

name: Pytest
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: "3.10"

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

View workflow run for this annotation

GitHub Actions / Pytest

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 10, Col: 25): Unexpected value '3.10'
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[test]
- name: Test with pytest
run: |
python -m pytest tests/