mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
add repo clone to actions;
This commit is contained in:
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
|
||||
|
Reference in New Issue
Block a user