Skip to content

escapes special characters that irritate the reST parser #52

escapes special characters that irritate the reST parser

escapes special characters that irritate the reST parser #52

Workflow file for this run

on:
push:
branches: ["main", "dev", "v*"]
pull_request:
name: build
jobs:
build:
strategy:
matrix:
python: ["3.7", "3.10"]
extras: ["", "[RANSAC, qrandom, plots]"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install ".${{ matrix.extras }}"
- run: pip install codecov .
- run: coverage run -m unittest nolds.test_measures
- run: codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
if: ${{ matrix.python == '3.10' && matrix.extras != '' }}