build: bump actions/setup-python from 4 to 5 #106
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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.7 | |
- 3.8 | |
- 3.9 | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
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 |