Skip to content

remove references to the now delete linkml_runtime.utils.ifabsent_functions #678

remove references to the now delete linkml_runtime.utils.ifabsent_functions

remove references to the now delete linkml_runtime.utils.ifabsent_functions #678

Workflow file for this run

# Built from:
# https://docs.github.com/en/actions/guides/building-and-testing-python
# https://github.com/actions/setup-python/
name: Build and test linkml-runtime
on: [pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.12"]
exclude:
- os: windows-latest
python-version: "3.8"
runs-on: ${{ matrix.os }}
steps:
#----------------------------------------------
# install poetry
#----------------------------------------------
- name: Install Poetry
run: pipx install poetry==1.4.0
#----------------------------------------------
# check-out repo and set-up python
#----------------------------------------------
- name: Check out repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --no-interaction
#----------------------------------------------
# coverage report
#----------------------------------------------
- name: Generate coverage results
run: |
poetry run coverage run -m pytest
poetry run coverage xml
poetry run coverage report -m
#----------------------------------------------
# upload coverage results
#----------------------------------------------
- name: Upload coverage report
uses: codecov/codecov-action@v3
with:
name: codecov-results-${{ matrix.os }}-${{ matrix.python-version }}
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.xml
fail_ci_if_error: true