Skip to content

Refactor using maxsplit #1

Refactor using maxsplit

Refactor using maxsplit #1

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.7"
- "3.8"
- "3.9"
- "3.10"
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install FuMa
run: pip install -e .
- name: Run unittests
run: python -m unittest