-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #164 from networktocode/develop
Sync 1.3.0
- Loading branch information
Showing
182 changed files
with
38,563 additions
and
2,962 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--- | ||
skips: [] | ||
# No need to check for security issues in the test scripts! | ||
exclude_dirs: | ||
- "./tests/" | ||
- "./docs/" | ||
- "netutils/oui_mappings.py" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
name: "Flat" | ||
|
||
on: # yamllint disable-line rule:truthy | ||
pull_request: | ||
branches: | ||
- "main" | ||
|
||
jobs: | ||
scheduled: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
# This step installs Deno, which is a new Javascript runtime that improves on Node. Can be used for an optional postprocessing step | ||
- name: "Setup deno" | ||
uses: "denoland/setup-deno@main" | ||
with: | ||
deno-version: "v1.10.x" | ||
# Check out the repository so it can read the files inside of it and do other operations | ||
- name: "Check out repo" | ||
uses: "actions/checkout@v2" | ||
# The Flat Action step. We fetch the data in the http_url and save it as downloaded_filename | ||
- name: "Fetch data" | ||
uses: "githubocto/flat@v3" | ||
with: | ||
http_url: "https://standards-oui.ieee.org" | ||
downloaded_filename: "./netutils/oui_mappings.py" | ||
postprocess: "./flat_postprocess/oui_postprocess.ts" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
--- | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
sphinx: | ||
builder: "html" | ||
configuration: "docs/source/conf.py" | ||
fail_on_warning: false | ||
# Set the version of Python in the build environment. | ||
build: | ||
os: "ubuntu-22.04" | ||
tools: | ||
python: "3.10" | ||
|
||
mkdocs: | ||
configuration: "mkdocs.yml" | ||
# fail_on_warning: true | ||
|
||
# Use our docs/requirements.txt during installation. | ||
python: | ||
version: 3.7 | ||
install: | ||
- requirements: "docs/requirements.txt" |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.