Skip to content

Fix slider velocity not being clamped to usable range #150

Fix slider velocity not being clamped to usable range

Fix slider velocity not being clamped to usable range #150

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.7, 3.8]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
- name: Lint with flake8
run: |
flake8 slider
- name: Test with pytest
run: |
pytest slider/