1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
---
name: Tests
on:
push:
branches:
- master
tags:
- "*.*"
pull_request:
schedule:
- cron: 30 7 2 * *
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install non-Python dependencies
run: >
sudo apt -qy update;
sudo apt -qy install
pkg-config
libsmi2-dev
libsnmp-dev
snmp-mibs-downloader
ncurses-term
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions wheel
- name: Run tests with tox
run: tox
- name: Collect coveralls data
uses: AndreMiras/coveralls-python-action@develop
with:
parallel: true
coveralls_finish:
name: Coveralls.io
needs: tests
runs-on: ubuntu-latest
steps:
- name: Send results to coveralls.io
uses: AndreMiras/coveralls-python-action@develop
with:
parallel-finished: true
|