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 tech library workflow #100

Merged
merged 1 commit into from
Aug 30, 2023
Merged
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.

28 changes: 24 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: Testing

on:
push:
branches-ignore:
- main
pull_request:
# Run jobs on any Pull Request activity
pull_request_target:
types:
- opened
- edited
- synchronize
- ready_for_review

jobs:
pre_commit:
Expand All @@ -28,3 +31,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