Skip to content

Make entity ref URL scheme configurable #127

Make entity ref URL scheme configurable

Make entity ref URL scheme configurable #127

Workflow file for this run

# Runs pytest on the matrix of supported platforms any Python versions.
name: Test
on:
pull_request:
jobs:
test:
name: ${{ matrix.os }} ${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
python: ['3.7', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: |
python -m pip install -r requirements.txt
python -m pip install -r tests/requirements.txt
python -m pip install .
python -m pytest -v ./tests