add intf-vlan-model #26
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
# SPDX-FileCopyrightText: 2023 Linutronix GmbH | |
# SPDX-License-Identifier: 0BSD | |
name: Testtool Linting and Formatting | |
on: [push] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: pip install ruff | |
- name: Linting | |
run: ruff check scripts/ | |
formatting: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: pip install ruff | |
- name: Formatting | |
run: ruff format --diff scripts/ | |