chore: Add pipeline
All checks were successful
CI / Get Changed Files (pull_request) Successful in 8s
Pull Request Labeler / labeler (pull_request_target) Successful in 9s
Label PRs based on size / Check PR size (pull_request) Successful in 14s
Build docs / build-docs (pull_request) Successful in 26s
Claude PR Review / claude-code (pull_request) Successful in 28s
CI / oxlint (pull_request) Successful in 32s
CI / eslint (pull_request) Successful in 42s
CI / prettier (pull_request) Successful in 42s
CI / Docker frontend validation (pull_request) Successful in 28s
CI / Docker backend validation (pull_request) Successful in 26s
CI / test-build (pull_request) Successful in 1m6s
CI / Checkstyle Main (pull_request) Successful in 1m9s
CI / Backend Tests (pull_request) Successful in 3m5s

This commit is contained in:
Jan K9f 2025-06-04 12:04:40 +02:00
commit 3bb3cafa14

27
.gitea/workflows/docs.yml Normal file
View file

@ -0,0 +1,27 @@
name: Build docs
on:
pull_request:
jobs:
build-docs:
runs-on: ubuntu-latest
container:
image: git.kjan.de/actions/runner-latex:latest
env:
# Edit here with the names of your latex file and directory (can use ".")
DIR: docs
FILE: projektdokumentation.tex
steps:
- name: Checkout
uses: actions/checkout@v2
- name: LaTeX compile
working-directory: ${{ env.DIR }}
run: latexmk -pdf -xelatex ${{ env.FILE }}
- name: Upload artifacts
uses: https://git.kjan.de/actions/upload-artifact@v3
with:
name: Doku
path: docs/projektdokumentation.pdf