-
Notifications
You must be signed in to change notification settings - Fork 4
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 #45 from scrapli/develop
Develop
- Loading branch information
Showing
16 changed files
with
514 additions
and
321 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 |
---|---|---|
|
@@ -11,9 +11,9 @@ jobs: | |
os: [ubuntu-latest] | ||
version: ["3.10"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: set up python ${{ matrix.version }} | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.version }} | ||
- name: setup test env | ||
|
@@ -27,14 +27,14 @@ jobs: | |
build_posix: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
max-parallel: 8 | ||
max-parallel: 10 | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
version: ["3.7", "3.8", "3.9", "3.10"] | ||
version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v3 | ||
- name: set up python ${{ matrix.version }} | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.version }} | ||
- name: get friendly (for nox) python version | ||
|
@@ -58,23 +58,3 @@ jobs: | |
TERM: xterm | ||
run: python -m nox -p $FRIENDLY_PYTHON_VERSION -k "not darglint" | ||
|
||
docs-test: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- run: docker run -v $(pwd):/docs --entrypoint "" squidfunk/mkdocs-material:latest ash -c 'pip install mdx_gh_links && mkdocs build --clean --strict' | ||
- name: Cache htmltest external links | ||
uses: actions/cache@v2 | ||
with: | ||
path: tmp/.htmltest | ||
# key will contain hash of all md files to check if files have changed | ||
# when files are changed, a new key name is formed, and thus a new cache will be saved | ||
key: htmltest-${{ hashFiles('docs/**/*.md') }} | ||
# the restore key will fetch any previously saved cache even if there is no match on key | ||
# this allows to use cache from prev runs and update it | ||
restore-keys: | | ||
htmltest- | ||
- name: htmltest | ||
uses: wjdp/[email protected] | ||
with: | ||
config: docs/htmltest.yml |
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
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 |
---|---|---|
|
@@ -62,6 +62,9 @@ venv.bak/ | |
# pycharm | ||
.idea | ||
|
||
# vscode | ||
.vscode/ | ||
|
||
# mypy | ||
.mypy_cache/ | ||
.dmypy.json | ||
|
Oops, something went wrong.