mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
51 lines
1.2 KiB
YAML
51 lines
1.2 KiB
YAML
name: Backend Testing
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
backend:
|
|
name: Backend Tests
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node-version: [14.x]
|
|
redis-version: [5, 6]
|
|
poetry-version: [1.1.4]
|
|
python-version: [3.6, 3.8]
|
|
os: [ubuntu-20.04]
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
POETRY_HYPERGLASS_UI_BUILD_TIMEOUT: 600
|
|
|
|
steps:
|
|
- name: Git Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Python
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Install Poetry
|
|
uses: abatilo/actions-poetry@v2.0.0
|
|
with:
|
|
poetry-version: ${{ matrix.poetry-version }}
|
|
|
|
- name: Install Node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
|
|
- name: Start Redis
|
|
uses: supercharge/redis-github-action@1.1.0
|
|
with:
|
|
redis-version: ${{ matrix.redis-version }}
|
|
|
|
- name: Install Python Dependencies
|
|
run: poetry install
|
|
|
|
- name: Run Flake8
|
|
run: poetry run flake8 hyperglass
|
|
|
|
- name: Run hyperglass
|
|
run: '.tests/ga-backend-app.sh'
|