Skip to content

Commit 8b5c0de

Browse files
committed
add path filters for the lint and test github actions workflow
1 parent d20b79c commit 8b5c0de

2 files changed

Lines changed: 19 additions & 7 deletions

File tree

.github/workflows/lint-and-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ name: Lint & Test
33
on:
44
pull_request:
55
paths:
6-
- '.github/workflows/*'
7-
- 'encrypted_fields/**/*'
8-
- 'package_test/**/*'
9-
- 'manage.py'
10-
- 'requirements.txt'
11-
- 'setup.py'
12-
- 'pyproject.toml'
6+
- ".github/workflows/*"
7+
- "encrypted_fields/**/*"
8+
- "package_test/**/*"
9+
- "manage.py"
10+
- "requirements.txt"
11+
- "setup.py"
12+
- "pyproject.toml"
1313
push:
1414

1515
permissions:

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Python
2+
.Python
3+
.eggs/
4+
lib64/
5+
sdist/
6+
var/
7+
__pycache__/
8+
*$py.class
9+
*.so
110
*.egg-info/
211
*.pyc
312
build/
@@ -7,3 +16,6 @@ dist/
716
.ruff_cache
817
.venv
918
.venv_django_*
19+
20+
# Node
21+
node_modules/

0 commit comments

Comments
 (0)