From d5f672698004ae05f55e5e1f6a6e62a9cebbd530 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Wed, 1 Apr 2026 17:21:26 +0900 Subject: ci: add Gitea Actions workflow and CI script --- scripts/ci.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 scripts/ci.sh (limited to 'scripts/ci.sh') diff --git a/scripts/ci.sh b/scripts/ci.sh new file mode 100755 index 0000000..c89dd0d --- /dev/null +++ b/scripts/ci.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +set -euo pipefail + +echo "=== Installing dependencies ===" +pip install -e shared/ +pip install pytest pytest-asyncio ruff + +echo "=== Linting ===" +ruff check . +ruff format --check . + +echo "=== Running tests ===" +pytest -v + +echo "=== All checks passed ===" -- cgit v1.2.3