Skip to content

Add poetry.lock back to versioning and trying minimal dependency #1515

Add poetry.lock back to versioning and trying minimal dependency

Add poetry.lock back to versioning and trying minimal dependency #1515

Workflow file for this run

name: sssom-py QC
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [ "3.8", "3.9", "3.10" ]
steps:
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: pipx install poetry
# - name: Experiment block
# run: |
# poetry run pipx wheel --use-pep517 "pytest-logging (==2015.11.4)"
- name: Install dependencies
run: poetry install
- name: Check code quality with flake8
run: poetry run tox -e flake8
- name: Check static typing with MyPy
run: poetry run tox -e mypy
- name: Test with pytest and generate coverage file
run: poetry run tox -e py