pantry/projects/pre-commit.com/package.yml

41 lines
980 B
YAML
Raw Normal View History

distributable:
url: https://github.com/pre-commit/pre-commit/archive/refs/tags/v{{ version }}.tar.gz
strip-components: 1
versions:
github: pre-commit/pre-commit/releases/tags
strip: /^v/
dependencies:
2023-10-03 18:23:56 +03:00
python.org: '>=3.8<3.12'
build:
2023-03-01 13:32:36 +03:00
python-venv.sh {{prefix}}/bin/pre-commit
provides:
- bin/pre-commit
test:
dependencies:
git-scm.org: '*'
env:
GIT_AUTHOR_NAME : "test user"
GIT_AUTHOR_EMAIL : "test@example.com"
GIT_COMMITTER_NAME : "test user"
GIT_COMMITTER_EMAIL : "test@example.com"
script: |
test "$(pre-commit --version)" = "pre-commit {{version}}"
git config --global init.defaultBranch main # get rid of the warning
git init
mv $FIXTURE .pre-commit-config.yaml
pre-commit install
echo 'hi\n' > f.txt
git add f.txt
git commit f.txt -m "test"
fixture: |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v0.9.1
hooks:
- id: trailing-whitespace