From ff2cfba1ffc2708ed43e3371e39c2e03bd4a1e19 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 28 Jul 2026 14:07:33 +0100 Subject: [PATCH] testing the pipeline setup on gitea --- .gitea/workflows/test.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..821bff0 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,24 @@ +name: CI + +on: + push: + brances: [pipeline-test] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Set up the project + uses: actions/setup-python@v5 + with: + python-version: "3.14" + + - name: Install dependencies + run: uv sync + + - name: Run tests + run: uv run pytest +