From 794aafbb9bd2c2b282564a31dceca87861128404 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Thu, 13 Feb 2020 21:30:12 -0700 Subject: [PATCH] add repo clone to actions; --- .github/workflows/tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ced4e26..bc4aeca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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