mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-07 07:55:16 +02:00
* feat: add logs in campaigns on failure * chore: bump pipecat * chore: update format.sh * chore: fix github workflow * fix: fix formatting errors
7 lines
130 B
Bash
Executable file
7 lines
130 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ruff check api --select I --select F401 --fix
|
|
ruff format api
|
|
|
|
(cd ui && npm run fix-lint)
|