check that install of "latest dependent packages" of linkml_runtime still results in tests passing (as opposed to running tests only on the poetry.lock dependencies) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and test linkml-runtime package dependencies | |
on: [pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
exclude: | |
- os: windows-latest | |
python-version: "3.7" | |
- os: windows-latest | |
python-version: "3.8" | |
runs-on: ${{ matrix.os }} | |
steps: | |
#---------------------------------------------- | |
# install poetry | |
#---------------------------------------------- | |
- name: Install Poetry | |
# Pin to 1.3.2 to workaround https://github.com/python-poetry/poetry/issues/7611 | |
run: pipx install poetry==1.3.2 | |
#---------------------------------------------- | |
# 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 | |
# this step we remove and rebuild the poetry.lock file to ensure that the tests that follow can be run | |
# with the latest dependencies | |
#---------------------------------------------- | |
# Remove and Rebuild the poetry.lock File | |
#---------------------------------------------- | |
- name: Remove poetry.lock (Unix) | |
if: runner.os != 'Windows' | |
run: rm -rf poetry.lock | |
- name: Remove poetry.lock (Windows) | |
if: runner.os == 'Windows' | |
run: Remove-Item poetry.lock -Force | |
- name: Run tests | |
run: poetry run python -m unittest discover |