DOC: added zenodo doi badge #15
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: test | |
on: | |
push: | |
branches: | |
- master | |
- main | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | |
mongodb-version: ['4.2', '4.4', '5.0', '6.0'] | |
dservercore-version: [ main ] | |
dserver-search-plugin-mongo-version: [ main ] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Set up python3 ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Start MongoDB | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
- name: Set up pytest environment | |
run: | | |
python -m pip install --upgrade pip | |
# The following line comes in handy when versioning and packaging | |
pip install --upgrade setuptools wheel setuptools-scm[toml] importlib-metadata | |
pip install flake8 pytest pytest-cov | |
- name: Install server refactor and search plugin | |
run: | | |
# This should move into the strategy matrix once released | |
pip install git+https://github.com/jic-dtool/dservercore.git@${{ matrix.dservercore-version }} | |
pip install git+https://github.com/jic-dtool/dserver-search-plugin-mongo.git@${{ matrix.dserver-search-plugin-mongo-version }} | |
- name: Install own requirements | |
run: | | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
pip install . | |
pip list | |
- name: Lint with flake8 | |
run: | | |
# stop the build if there are Python syntax errors or undefined names | |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics | |
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide | |
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics | |
- name: Test with pytest | |
run: | | |
pytest -sv |