snmp: use v1arch for SNMPv1/v2c and v3arch for SNMPv3 #166
This file contains hidden or 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.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 |