Skip to content

Update version to 0.0.37 #207

Update version to 0.0.37

Update version to 0.0.37 #207

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request: ~
workflow_dispatch: ~
jobs:
build:
strategy:
matrix:
python-version: [3.9, 3.11, 3.12]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements_tests.txt
pip install flake8
- name: Lint with flake8
run: flake8 --show-source --statistics
- name: Test with pytest
run: pytest --cov-fail-under=100 --cov-report=term-missing