8000 feat(py): implementation of parse.py; refactor parse.ts and update tests. by yesudeep · Pull Request #79 · google/dotprompt · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(py): implementation of parse.py; refactor parse.ts and update tests. #79

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2024 Google LLC
# SPDX-License-Identifier: Apache-2.0

name: "JS: Run Tests"
name: "JS: Run Tests and Build"

on:
push:
Expand Down Expand Up @@ -38,3 +38,6 @@ jobs:

- name: Run tests
run: cd js && pnpm test

- name: Build
run: cd js && pnpm build
22 changes: 20 additions & 2 deletions captainhook.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,16 @@
"run": "uv run --directory python mypy ."
},
{
"run": "scripts/run_tests"
"run": "scripts/run_python_tests"
},
{
"run": "scripts/run_js_tests"
},
{
"run": "scripts/run_go_tests"
},
{
"run": "pnpm -C js build"
},
{
"run": "uv run mkdocs build"
Expand Down Expand Up @@ -80,7 +89,16 @@
"run": "uv run --directory python mypy ."
},
{
"run": "scripts/run_tests"
"run": "scripts/run_python_tests"
},
{
"run": "scripts/run_js_tests"
},
{
"run": "scripts/run_go_tests"
},
{
"run": "pnpm -C js build"
},
{
"run": "uv run mkdocs build"
Expand Down
Loading
Loading
0