Skip to content

Update dependency pynetbox to v7.4.1 #359

Update dependency pynetbox to v7.4.1

Update dependency pynetbox to v7.4.1 #359

Workflow file for this run

name: System Tests
on:
push:
branches: [ "main", "dev" ]
paths:
- '**'
- '!**.md'
- '!**.png'
pull_request:
branches: [ "main", "dev" ]
paths:
- '**'
- '!**.md'
- '!**.png'
workflow_dispatch:
env:
PYVER: 3.9
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYVER }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run tests
run: |
make test