add path filters for the lint and test github actions workflow

This commit is contained in:
David Paul Graham 2026-03-07 17:11:10 -05:00
parent d20b79cfc0
commit 8b5c0dec55
No known key found for this signature in database
GPG key ID: ACDB045B782EF333
2 changed files with 19 additions and 7 deletions

View file

@ -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
View file

@ -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/