Skip to content

with pip install

with pip install #39

Workflow file for this run

name: Test pipenv cache
on:
workflow_dispatch:
push:
jobs:
test-cache:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest, macos-13, ubuntu-24.04-arm, ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
id: python
uses: actions/setup-python@v5
with:
python-version : "pypy3.10"
cache: 'pipenv'
- run: echo "${{ steps.python.outputs.python-version }}"
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
- run: pipenv install