Bump the python-dependencies group across 1 directory with 23 updates #416
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |