Skip to content

ci: install --editable #3

ci: install --editable

ci: install --editable #3

Workflow file for this run

name: ci
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.10.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
pip install -r requirements-tests.txt
pip install --editable .
- name: run tests
run: pytest -vv test