v7.4.1 upgrade requests and urllib3 libraries for security vulnerabil… #370
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: Py3 Test | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.10", "3.11", "3.12"] | |
netbox: ["3.6", "3.7", "4.0"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Install dev requirements | |
run: pip install -r requirements-dev.txt . | |
- name: Run Linter | |
run: black --diff --check pynetbox tests | |
- name: Run Tests | |
run: pytest --netbox-versions=${{ matrix.netbox }} |