From 64970c8c86a12e41f4166c4577366a2e64a27c4b Mon Sep 17 00:00:00 2001 From: Daniel Dolezal Date: Fri, 10 Apr 2026 13:17:41 +0200 Subject: [PATCH] add test workflow to run testing on main push skip that neating a active live browser --- .gitea/workflows/testing.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/testing.yml diff --git a/.gitea/workflows/testing.yml b/.gitea/workflows/testing.yml new file mode 100644 index 0000000..ba0f40c --- /dev/null +++ b/.gitea/workflows/testing.yml @@ -0,0 +1,23 @@ +name: Testing + +on: + push: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Install uv + uses: astral-sh/setup-uv@v5 + + - name: Install dependencies + run: uv sync --group dev --managed-python + + - name: Run tests + run: uv run pytest