Skip to content

Bump version, fix flake8 errors. #17

Bump version, fix flake8 errors.

Bump version, fix flake8 errors. #17

Workflow file for this run

name: Unit Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
timeout-minutes: 10
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Requirements
run: python -m pip install pytest coverage pytest-cov
- name: Install package
run: python setup.py install
- name: Execute Tests
run: flake8 engineering_notation & pytest -v tests