Skip to content

Commit d5210dd

Browse files
committed
Fixed README new line issue and tests for selected file changes
1 parent 41397c1 commit d5210dd

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/generate_docs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ def generate_markdown_docs() -> str:
184184
```bash
185185
helm values-manager --help
186186
helm values-manager <command> --help
187-
```"""
187+
```
188+
"""
188189
)
189190

190191
return "".join(docs)

.github/workflows/test.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,30 @@ name: Tests
33
on:
44
push:
55
branches: [ main ]
6+
paths:
7+
- 'helm_values_manager/**'
8+
- 'tests/**'
9+
- 'scripts/**'
10+
- 'plugin.yaml'
11+
- 'setup.py'
12+
- 'setup.cfg'
13+
- 'pyproject.toml'
14+
- 'tox.ini'
15+
- 'requirements*.txt'
16+
- '.github/workflows/test.yml'
617
pull_request:
718
branches: [ main ]
19+
paths:
20+
- 'helm_values_manager/**'
21+
- 'tests/**'
22+
- 'scripts/**'
23+
- 'plugin.yaml'
24+
- 'setup.py'
25+
- 'setup.cfg'
26+
- 'pyproject.toml'
27+
- 'tox.ini'
28+
- 'requirements*.txt'
29+
- '.github/workflows/test.yml'
830

931
jobs:
1032
test:

0 commit comments

Comments
 (0)