2020-02-13 18:27:33 -07:00
|
|
|
name: Run Tests
|
|
|
|
on:
|
2020-02-13 21:17:02 -07:00
|
|
|
push:
|
2020-02-13 18:27:33 -07:00
|
|
|
branches:
|
|
|
|
- v1.0.0
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
2020-02-13 21:30:12 -07:00
|
|
|
services:
|
|
|
|
redis:
|
|
|
|
image: redis
|
2020-02-13 21:32:06 -07:00
|
|
|
ports:
|
|
|
|
- 6379:6379
|
2020-02-13 18:27:33 -07:00
|
|
|
steps:
|
2020-02-13 21:24:33 -07:00
|
|
|
- name: Setup Python 3.6
|
2020-02-13 18:27:33 -07:00
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
2020-02-13 21:18:25 -07:00
|
|
|
python-version: 3.6.10
|
2020-02-13 21:30:12 -07:00
|
|
|
- name: Clone Repository
|
|
|
|
uses: actions/checkout@v2
|
2020-02-13 21:41:54 -07:00
|
|
|
with:
|
|
|
|
ref: v1.0.0
|
2020-02-14 09:27:25 -07:00
|
|
|
- name: Install Poetry
|
|
|
|
uses: dschep/install-poetry-action@v1.3
|
|
|
|
- name: Install Python Dependencies
|
|
|
|
run: poetry install
|
|
|
|
- name: Lint
|
|
|
|
run: poetry run flake8 hyperglass
|