Skip to content

add path to install rye #16

add path to install rye

add path to install rye #16

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
tests:
runs-on: ${{ matrix.platform }}
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-dev.lock
- name: Exec test
run: pytest --capture no -v