Skip to content

bump version

bump version #100

Workflow file for this run

name: Python unittest
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Run unittest
run: |
python -m pip install --upgrade pip
python -m unittest discover