Skip to content

test

test #17

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: cdce8p/setup-python@pypy-version-output
with:
python-version: "pypy3.10"
cache: 'poetry'
- run: echo "${{ steps.python.outputs.python-version }}"
- run: pip install poetry
- name: Install dependencies
run: poetry install --no-root