Merge pull request #18 from livMatS/dependabot/github_actions/sigstor… #106
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] | |
jobs: | |
build: | |
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] | |
dserver-retrieve-plugin-mongo-version: [main] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Set up MongoDB ${{ matrix.mongodb-version }} | |
uses: supercharge/[email protected] | |
with: | |
mongodb-version: ${{ matrix.mongodb-version }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Setup and testing requirements | |
run: | | |
python -m pip install --upgrade pip | |
pip install --upgrade setuptools wheel setuptools-scm[toml] importlib-metadata | |
pip install flake8 pytest | |
- name: Install server, search and retrieve plugins | |
run: | | |
# This should move into the strategy matrix once released | |
pip install git+https://github.com/livMatS/dservercore.git@${{ matrix.dservercore-version }} | |
pip install git+https://github.com/livMatS/dserver-search-plugin-mongo.git@${{ matrix.dserver-search-plugin-mongo-version }} | |
pip install git+https://github.com/livMatS/dserver-retrieve-plugin-mongo.git@${{ matrix.dserver-retrieve-plugin-mongo-version }} | |
- name: Remaining 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 |