Skip to content

Update Python to 3.10 in workflows #7

Update Python to 3.10 in workflows

Update Python to 3.10 in workflows #7

Workflow file for this run

name: 🧪 Testing
on: [push, pull_request]
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, macos-13, macos-14, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
if: matrix.os == 'windows-latest'
- name: Run tests
run: |
pipx run poetry install
pipx run poetry run pytest