Skip to content

Bump more-itertools from 8.14.0 to 10.2.0 #314

Bump more-itertools from 8.14.0 to 10.2.0

Bump more-itertools from 8.14.0 to 10.2.0 #314

Workflow file for this run

name: Run Python 🐍 tests
on: [push, pull_request]
env:
PYTHONUTF8: 1
jobs:
test:
strategy:
matrix:
os: ["macos-latest", "windows-latest","ubuntu-20.04"]
python-version: ["3.9.13","3.8.10","3.10","3.11"]
fail-fast: false
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install .[all]
- name: Test with pytest
run: |
pytest