This repository has been archived on 2026-03-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ci-templates/Pre-Commit-Go.gitlab-ci.yml
T

17 lines
499 B
YAML

run-pre-commit:
stage: .pre
image: unbound/pre-commit:v0.3.6@sha256:5e5d3597d10875a8da0ba18f9d107de52e317626caa9e272dedad6ee1a3ce7ec
variables:
PRE_COMMIT_HOME: ${CI_PROJECT_DIR}/.cache/pre-commit
GOPRIVATE: gitlab.com/unboundsoftware
cache:
- key:
files:
- .pre-commit-config.yaml
paths:
- ${PRE_COMMIT_HOME}
before_script:
- echo -e "machine gitlab.com\nlogin gitlab-ci-token\npassword ${CI_JOB_TOKEN}" > ~/.netrc
script:
- pre-commit run --all-files