Skip to content

Update to readme and version increment #158

Update to readme and version increment

Update to readme and version increment #158

Workflow file for this run

name: Test library with unittest.
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, '3.10']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- name: Set up all python version
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run Test
run: python -m unittest