mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2024-10-31 23:49:24 +01:00
20 lines
569 B
YAML
20 lines
569 B
YAML
# Based on https://pre-commit.com
|
|
image: python:alpine
|
|
gitlab-ci-pre-commit:
|
|
stage: build
|
|
before_script:
|
|
- apk add --no-cache git gcc musl-dev go exiftool
|
|
- pip install pre-commit
|
|
script:
|
|
- pre-commit run --all-files --show-diff-on-failure
|
|
variables:
|
|
# Remember to gitignore .cache/**
|
|
PRE_COMMIT_HOME: ${CI_PROJECT_DIR}/.cache/pre-commit
|
|
TERM: dumb
|
|
# TODO: How to LaTeX on Alpine? texmf-dist texlive packages aren't enough
|
|
# for the artikel3 or similar templates.
|
|
SKIP: latexmk
|
|
cache:
|
|
paths:
|
|
- ${PRE_COMMIT_HOME}
|