Skip to content

build-qrm-server.yml: add run_tests condition #164

build-qrm-server.yml: add run_tests condition

build-qrm-server.yml: add run_tests condition #164

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: test QRM server and client
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install -y redis-server
make -f Makefile_qrmserver install_py_req
sudo service redis-server stop
- 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 --ignore="F723,"
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
make -f Makefile_qrmserver flake8_check
- name: Test with pytest
run: |
make -f Makefile_qrmserver tests