Skip to content

Bump the python-dependencies group across 1 directory with 23 updates #416

Bump the python-dependencies group across 1 directory with 23 updates

Bump the python-dependencies group across 1 directory with 23 updates #416

name: pytest (Pipfile.lock)
on: [push, pull_request]
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Upgrade PyPA packages
run: python -m pip install -U pip setuptools wheel
- name: Install pipenv
run: pip install pipenv
- name: Install project with all dependencies
run: pipenv install -d
- name: Run all tests
run: pipenv run pytest --doctest-modules
timeout-minutes: 2