Skip to content

initial docstring support #1660

initial docstring support

initial docstring support #1660

Workflow file for this run

name: rope
on: [push, pull_request]
jobs:
test:
name: Test - ${{ matrix.python-version }} - ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.0-rc.3']
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'gha-cache-key.txt'
- name: Install dependencies
run: |
python -m pip install -e .[dev]
- name: Test with pytest
run: |
python -m pytest -v