Skip to content

fix: max_len case where split_index does not match, closes #45 (#46) #44

fix: max_len case where split_index does not match, closes #45 (#46)

fix: max_len case where split_index does not match, closes #45 (#46) #44

Workflow file for this run

name: Development pipeline
on:
push:
paths-ignore:
- ".gitignore"
- "README.md"
- "docs/**"
pull_request:
paths-ignore:
- ".gitignore"
- "README.md"
- "docs/**"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements_dev.txt ]; then pip install -r requirements_dev.txt; fi
- name: Setup environment
run: |
mv config/settings.yaml.dist config/settings.yaml
- name: Lint with pylint
run: |
pip3 install pylint
pylint main.py module
# - name: Test with pytest
# run: |
# pip3 install pytest
# pytest tests