Skip to content

add fixed dependency versions #9

add fixed dependency versions

add fixed dependency versions #9

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [2.7]
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: python -m pip install --upgrade pip && pip install -r requirements.txt
- name: build
run: cp config.py.example config.py && ./compile.py
- name: run
run: ./run.py
- name: basic test
run: wget http://localhost:9090 -O /dev/null && kill $(cat twistd.pid)