Skip to content

Commit

Permalink
Create mkdocs_build.yml
Browse files Browse the repository at this point in the history
Start workflows
  • Loading branch information
ArcTrooper210 authored Oct 13, 2024
1 parent 112fe0b commit e2df408
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/mkdocs_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: mkdocs_build
on:
push:
branches:
- main
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
deploy:
runs-on: ubuntu-latest
env:
ENABLE_STRICT: true
META_DESCRIPTIONS: false
ENABLE_GIT_REVISION_DATE: false
CI: false
ENABLE_MINIFY: true
ENABLE_STRICT_GIT_REVISION_DATE: true

steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
- uses: actions/setup-python@v5
- run: uv sync
- run: uv run mkdocs build

0 comments on commit e2df408

Please sign in to comment.