Skip to content

Update cache-pip.yml #29

Update cache-pip.yml

Update cache-pip.yml #29

Workflow file for this run

name: Test poetry 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: Install poetry
run: pipx install poetry
- name: Set up Python
id: python
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: 'poetry'
# - run: echo "${{ steps.python.outputs.python-version }}"
# - run: pip install poetry
- name: Install dependencies
run: poetry install --no-root