PyZipline/.vscode/tasks.json
cswimr 1a6baa4ee4
Some checks failed
Actions / Build Documentation (MkDocs) (push) Failing after 8s
Actions / Lint Code (Ruff & Pylint) (push) Failing after 10s
Actions / Build (push) Successful in 12s
chore: bunch of devcontainer and devops stuff
2025-01-29 11:39:23 +00:00

27 lines
699 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "MkDocs: Build Documentation",
"type": "shell",
"command": "uv",
"args": [
"run",
"mkdocs",
"build",
],
"problemMatcher": []
},
{
"label": "Forgejo Actions: Run Actions",
"type": "shell",
"command": "forgejo-runner",
"args": [
"exec",
"--default-actions-url=https://www.coastalcommits.com",
"--gitea-instance=https://www.coastalcommits.com"
],
"problemMatcher": []
}
]
}