Skip to content

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

Add poetry.lock back to versioning and trying minimal dependency

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

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]
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 }}
#----------------------------------------------
# install & configure poetry
#----------------------------------------------
- name: Install Poetry
uses: snok/install-poetry@v1
# #----------------------------------------------
# # load cached venv if cache exists
# #----------------------------------------------
# - name: Load cached venv
# id: cached-poetry-dependencies
# uses: actions/cache@v3
# with:
# path: .venv
# key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}
- name: Windows specific step.
if: matrix.os == 'windows-latest'
run: echo "${HOME}/.local/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
#----------------------------------------------
# install dependencies if cache does not exist
#----------------------------------------------
- name: Install dependencies
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry run pip wheel --use-pep517 "pytest-logging (==2015.11.4)"
poetry install --no-interaction
- 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