Skip to content

Merge pull request #9 from sirixdb/dependabot/pip/pygments-2.15.0 #73

Merge pull request #9 from sirixdb/dependabot/pip/pygments-2.15.0

Merge pull request #9 from sirixdb/dependabot/pip/pygments-2.15.0 #73

Workflow file for this run

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