mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
add path filters for the lint and test github actions workflow
This commit is contained in:
parent
d20b79cfc0
commit
8b5c0dec55
2 changed files with 19 additions and 7 deletions
14
.github/workflows/lint-and-test.yml
vendored
14
.github/workflows/lint-and-test.yml
vendored
|
|
@ -3,13 +3,13 @@ name: Lint & Test
|
|||
on:
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/*'
|
||||
- 'encrypted_fields/**/*'
|
||||
- 'package_test/**/*'
|
||||
- 'manage.py'
|
||||
- 'requirements.txt'
|
||||
- 'setup.py'
|
||||
- 'pyproject.toml'
|
||||
- ".github/workflows/*"
|
||||
- "encrypted_fields/**/*"
|
||||
- "package_test/**/*"
|
||||
- "manage.py"
|
||||
- "requirements.txt"
|
||||
- "setup.py"
|
||||
- "pyproject.toml"
|
||||
push:
|
||||
|
||||
permissions:
|
||||
|
|
|
|||
12
.gitignore
vendored
12
.gitignore
vendored
|
|
@ -1,3 +1,12 @@
|
|||
# Python
|
||||
.Python
|
||||
.eggs/
|
||||
lib64/
|
||||
sdist/
|
||||
var/
|
||||
__pycache__/
|
||||
*$py.class
|
||||
*.so
|
||||
*.egg-info/
|
||||
*.pyc
|
||||
build/
|
||||
|
|
@ -7,3 +16,6 @@ dist/
|
|||
.ruff_cache
|
||||
.venv
|
||||
.venv_django_*
|
||||
|
||||
# Node
|
||||
node_modules/
|
||||
|
|
|
|||
Loading…
Reference in a new issue