Skip to content

refactor: remove too simple converters (#17) #44

refactor: remove too simple converters (#17)

refactor: remove too simple converters (#17) #44

Workflow file for this run

name: unittest
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.pyver }}
- name: Install
run: |
python -m pip install coverage
- name: Run unittest
run: |
coverage run -m unittest discover tests
coverage report