move bioner config to mednlp #11
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: CI | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- '**.md' | |
- 'doc/*' | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.10', '3.11'] | |
steps: | |
- name: Checkout reposistory | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
# https://github.com/nmslib/nmslib/issues/538 | |
- name: Install an available library from the abandoned nmslib project | |
run: >- | |
[ $(python --version | sed -E 's/Python ([0-9]+\.[0-9]+)\.[0-9]+.*/\1/') == '3.11' ] && \ | |
pip install https://raw.githubusercontent.com/plandes/mednlp/master/test-resources/github-workflow-lib/nmslib-2.1.2-cp311-cp311-linux_x86_64.whl || true | |
# avoid out of space errors | |
# https://github.com/orgs/community/discussions/25678 | |
- name: Cleanup space | |
run: >- | |
rm -fr /opt/hostedtoolcache && rm -fr ~/.cache/pip | |
- name: Prepare tests | |
run: 'make info testdeps' | |
- name: Run tests | |
run: 'make test' |