Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matching logic in tech library #99

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 0 additions & 29 deletions .github/workflows/mkdocs-test.yml

This file was deleted.

20 changes: 18 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Testing

on:
# Run jobs on any Pull Request activity
push:
branches-ignore:
- main
pull_request:

jobs:
Expand All @@ -28,3 +27,20 @@ jobs:
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
# with:
# files: workshops/

test_build:
name: Build site with no warnings
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true

- uses: actions/setup-python@v2
with:
python-version: 3.x

##### Install required Python Modules and build the website #####
- run: pip install -r requirements.txt
- run: pip install git+https://${{ secrets.MKDOCS_INSIDER_TOKEN }}@github.com/squidfunk/[email protected]
- run: mkdocs build --strict
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ theme:

logo: assets/images/logo.png

name: material
name: something123

palette:
- media: "(prefers-color-scheme: light)"
Expand Down
2 changes: 2 additions & 0 deletions workshops/avd-lab-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ In this example, the ATD lab is used to create the L2LS Dual Data Center topolog

![Dual DC Topology](assets/images/topologies.svg)

What a great image!

### Host Addresses

| Host | IP Address |
Expand Down
Loading