Skip to content

Adding advertised prefixes api endpoint #74

Adding advertised prefixes api endpoint

Adding advertised prefixes api endpoint #74

Workflow file for this run

name: Sideick Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
services:
redis:
image: redis
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 6379:6379
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
strategy:
max-parallel: 4
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt-get install -y librrd-dev
python -m pip install --upgrade pip
pip install python-dateutil
pip install backports.weakref
pip install backports-datetime-fromisoformat
pip install pycodestyle
pip install coverage
pip install -r requirements.txt
- name: Run Tests
run: |
./scripts/test.sh