Skip to content

---

--- #16

Workflow file for this run

name: Test
on: [push]
jobs:
build:
runs-on: ubuntu-18.04
timeout-minutes: 30
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 packages
run: |
sudo apt -qq update
sudo apt -qq install python-nfqueue
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install nose
python setup.py install
- name: Run the tests
run: |
nosetests -v