Merge pull request #15 from sirixdb/dependabot/pip/jinja2-3.1.4 #70
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: | |
push: | |
branches: | |
- master | |
tags: | |
- v0.* | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ '3.7', '3.8', '3.9', '3.10' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: setup python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
- name: setup SirixDB server | |
run: bash ./test.sh | |
- name: install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-all.txt | |
- name: test with pytest | |
run: python -m pytest --cov=pysirix --cov-config=.coveragerc -v |