Delete extra lines when using exclude regexps #96
Workflow file for this run
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: CI | |
on: [push, pull_request] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 10 | |
matrix: | |
python: ["3.10", "3.11"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up python ${{ matrix.python }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Setup dev env | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install --upgrade setuptools wheel | |
python -m pip install -r requirements/dev.txt | |
- name: Run black | |
run: black --check --diff --color . | |
- name: Run ruff | |
run: ruff . | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 10 | |
matrix: | |
netbox_version: ["v3.5.9", "v3.6.1"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build NetBox | |
run: cd development && docker compose build --build-arg NETBOX_VERSION=${{ matrix.netbox_version }} | |
- name: Run tests | |
run: cd development && docker compose run netbox sh -c "cd /plugin/netbox_config_diff && pytest" |