Skip to content

Commit 774c386

Browse files
updated pipeline
1 parent e6004a9 commit 774c386

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

.github/workflows/pylint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
paths:
66
- 'src/**/*.py'
7-
- '!src/tests/**'
87
- '.flake8'
98
- '.github/workflows/pylint.yml'
109

.github/workflows/tests.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ on:
44
push:
55
branches:
66
- main # Trigger on push to the main branch
7+
paths:
8+
- 'src/**/*.py'
9+
- 'src/requirements*.txt'
10+
- 'src/frontend/**/*.ts'
11+
- 'src/frontend/**/*.tsx'
12+
- 'src/frontend/**/*.js'
13+
- 'src/frontend/**/*.jsx'
14+
- 'src/frontend/**/*.json'
15+
- '.github/workflows/tests.yml'
716
pull_request:
817
branches:
918
- main # Trigger on pull requests to the main branch
@@ -12,6 +21,15 @@ on:
1221
- ready_for_review
1322
- reopened
1423
- synchronize
24+
paths:
25+
- 'src/**/*.py'
26+
- 'src/requirements*.txt'
27+
- 'src/frontend/**/*.ts'
28+
- 'src/frontend/**/*.tsx'
29+
- 'src/frontend/**/*.js'
30+
- 'src/frontend/**/*.jsx'
31+
- 'src/frontend/**/*.json'
32+
- '.github/workflows/tests.yml'
1533

1634
jobs:
1735
backend_tests:

0 commit comments

Comments
 (0)