Sumo Logic Discovered Evidence of a Potential Security Incident - 202… #9
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
# Simple workflow for testing mkdocs build | |
name: Test building TLP:CLEAR content | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: install mkdocs | |
run: pip install -r requirements.txt | |
- name: build site | |
run: python -m mkdocs build --strict |