feat(logging): 🔊 add logging configuration for PyTorch Lightning and Transformers #14
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
name: 🧪 Maestro Docs Test WorkFlow 📚 | |
on: | |
pull_request: | |
branches: [main, develop] | |
# Restrict permissions by default | |
permissions: | |
contents: read # Required for checkout | |
checks: write # Required for test reporting | |
jobs: | |
docs-build-test: | |
name: Test docs build | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- name: 📥 Checkout the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: 🐍 Set up Python | |
uses: actions/setup-python@42375524e23c412d93fb67b49958b491fce71c38 # v5.4.0 | |
with: | |
python-version: '3.10' | |
- name: 📦 Install Packages | |
run: pip install -e ".[docs]" | |
- name: 🧪 Test Docs Build | |
run: mkdocs build --verbose |