mirror of
				https://gitea.blesmrt.net/mikaela/shell-things.git
				synced 2025-11-04 11:27:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			454 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			454 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
# @format
 | 
						|
 | 
						|
# 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
 | 
						|
    - pip install pre-commit --break-system-packages
 | 
						|
  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
 | 
						|
  cache:
 | 
						|
    paths:
 | 
						|
      - ${PRE_COMMIT_HOME}
 |