Skip to content

remove newly added trailing whitespace #34

remove newly added trailing whitespace

remove newly added trailing whitespace #34

Workflow file for this run

name: MkDocs
on: push
jobs:
mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Configure Git Credentials
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install Python and dependencies
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- run: pip install --upgrade pip wheel setuptools
- run: pip install -r requirements.txt
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
run: mkdocs gh-deploy --force