Skip to content

trying to get install -e . to work with git+https #6

trying to get install -e . to work with git+https

trying to get install -e . to work with git+https #6

Workflow file for this run

name: Commit testing
on: [push, pull_request]
jobs:
test_pull_request:
runs-on: ubuntu-latest
steps:
- name: Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.10.0
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- uses: actions/setup-python@v3
with:
python-version: '3.10'
cache: 'pip'
- name: Installing requirements
run: |
python --version
python -m pip install --upgrade pip pytest pytest-asyncio mypy ruff black
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
python -m pip install -e .
- name: Running ruff
run: ruff .
- name: Running mypy
run: make typecheck
- name: Running pytest
run: pytest .