update ci.yaml

This commit is contained in:
Sina Atalay 2024-02-09 20:36:50 +01:00
parent 016d4ae88a
commit 2f22011aed
1 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ jobs:
runs-on: ${{ matrix.os }}-latest runs-on: ${{ matrix.os }}-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4 uses: actions/setup-python@v4
@ -52,7 +54,7 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
python -m pip install pytest python -m pip install pytest
pip install . pip install .[testing]
- name: Test with pytest - name: Test with pytest
run: | run: |