Skip to content

[feature] Added ZeroTier backend #208 #288

[feature] Added ZeroTier backend #208

[feature] Added ZeroTier backend #208 #288

Workflow file for this run

---
name: Netjsonconfig CI Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
name: Python==${{ matrix.python-version }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
python-version:
- 3.8
- 3.9
- "3.10"
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
pip install -U pip wheel setuptools
pip install -U -r requirements-test.txt
- name: Install netjsonconfig
run: pip install -U -e .
- name: QA checks
run: ./run-qa-checks
- name: Tests
run: coverage run -a --source=netjsonconfig runtests.py
- name: Upload Coverage
uses: coverallsapp/github-action@v2
with:
parallel: true
flag-name: python-${{ matrix.env.env }}
github-token: ${{ secrets.GITHUB_TOKEN }}
coveralls:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true