Skip to content

Bp schema update

Bp schema update #587

Workflow file for this run

---
name: Continous integration of LSP
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ['3.6', '3.7']
name: run tests for python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f server/requirements.txt ]; then pip install -r server/requirements.txt; fi
- name: Test with unittest
run: |
python -m unittest discover tests/
lint:
name: lint and format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Lint Code Base
uses: docker://github/super-linter:v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
VALIDATE_PYTHON_MYPY: false