Code owners
Assign users and groups as approvers for specific file changes. Learn more.
gitlab-ci.yaml 414 B
---
variables:
container_registry: docker.io
image_name: archlinux
image_version: latest
stages:
- test
- doc
pre-commit:
stage: test
image: ${container_registry}/${image_name}:${image_version}
before_script:
- pacman -Syu --noconfirm
- pacman -S git --noconfirm
- pacman -S pre-commit --noconfirm
script:
- pre-commit install -t pre-commit
- pre-commit run --all --verbose