forked from mirrors/thatmattlove-hyperglass
add repo clone to actions;
This commit is contained in:
parent
f87a27475e
commit
794aafbb9b
1 changed files with 7 additions and 0 deletions
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-18.04
|
||||
services:
|
||||
redis:
|
||||
image: redis
|
||||
ports: [6379:6379]
|
||||
steps:
|
||||
- name: Setup Python 3.6
|
||||
uses: actions/setup-python@v1
|
||||
|
|
@ -15,8 +19,11 @@ jobs:
|
|||
- name: Install System Dependencies
|
||||
run: |
|
||||
sudo apt install -y redis-server
|
||||
- name: Clone Repository
|
||||
uses: actions/checkout@v2
|
||||
- name: Install Python Dependencies
|
||||
run: |
|
||||
cd ./hyperglass
|
||||
pip install .
|
||||
- name: lint
|
||||
uses: ricardochaves/python-lint@v1.1.0
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue