Skip to content

bump version

bump version #114

Workflow file for this run

name: Python unittest
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# https://devguide.python.org/versions/
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
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