-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from anevis/chore/dependabot-fix
Added example file Fixed the dependabot yaml Fix long description for PyPI Make CD manual
- Loading branch information
Showing
10 changed files
with
85 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: CD Pipeline | |
run-name: CD 📦🚀 | ||
|
||
on: | ||
workflow_run: | ||
workflow_dispatch: | ||
workflows: ['CI Pipeline'] | ||
types: [completed] | ||
branches: | ||
|
@@ -22,7 +22,7 @@ jobs: | |
- name: Installing Devbox ⚙️ | ||
uses: jetpack-io/[email protected] | ||
- name: Install all dependencies 📦 | ||
run: devbox run install-dev | ||
run: devbox run install | ||
- name: 📦 Package | ||
run: devbox run build | ||
- name: 🚀 Publish to PyPI | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
- name: Installing Devbox ⚙️ | ||
uses: jetpack-io/[email protected] | ||
- name: Install all dependencies 📦 | ||
run: devbox run install-dev | ||
run: devbox run install | ||
- name: 🧹 Linting & Formatting | ||
run: devbox run lint && devbox run format | ||
- name: 🧪 Running Tests | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from yaml_to_markdown.md_converter import MDConverter | ||
|
||
data = { | ||
"name": "John Doe", | ||
"age": 30, | ||
"city": "Sydney", | ||
"hobbies": ["reading", "swimming"], | ||
} | ||
converter = MDConverter() | ||
with open("output.md", "w") as f: | ||
converter.convert(data, f) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
click==8.1.7 | ||
jsonschema[format]==4.21.1 | ||
pyyaml==6.0.1 | ||
|
||
# Dev dependencies | ||
coverage==7.4.4 | ||
mock==5.1.0 | ||
pytest==8.1.1 | ||
pytest-cov==5.0.0 | ||
|
||
bandit==1.7.8 | ||
black==24.3.0 | ||
flake8==7.0.0 | ||
flake8-bandit==4.1.1 | ||
flake8-black==0.3.6 | ||
flake8-bugbear==24.2.6 | ||
flake8-functions==0.0.8 | ||
isort==5.13.2 | ||
mypy==1.9.0 | ||
pep8-naming==0.13.3 | ||
safety | ||
|
||
# Packaging | ||
setuptools==69.2.0 | ||
twine==5.0.0 | ||
wheel==0.43.0 | ||
|
||
# Typing | ||
types-mock==5.1.0.20240311 | ||
types-orjson==3.6.2 | ||
types-PyYAML==6.0.12.20240311 | ||
types-jsonschema==4.21.0.20240331 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters