Skip to content

Update version to 0.3.2 #25

Update version to 0.3.2

Update version to 0.3.2 #25

Workflow file for this run

name: Python package
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.7","3.8","3.9","3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Install clir using Poetry
run: |
poetry install ; poetry build ; pip install .
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest -v -s tests/init_clir.py #--doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html