From c07b4ff4d6e948446945944fceddc7ae2eafee7b Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Tue, 28 Jul 2026 15:38:33 +0100 Subject: [PATCH] main pipeline added --- .gitea/workflows/main.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/main.yaml diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml new file mode 100644 index 0000000..9b0724f --- /dev/null +++ b/.gitea/workflows/main.yaml @@ -0,0 +1,21 @@ +name: main +run-name: ${{ gitea.actor }} is running main pipeline +on: + push: + workflow_dispatch: + +jobs: + Explore-Gitea-Actions: + runs-on: ubuntu-latest + steps: + - name: "Install uv" + run: wget -qO- https://astral.sh/uv/install.sh | sh + - name: Check out repository code + uses: actions/checkout@v4 + - name: Sync dependencies with uv + run: uv sync + - name: Run tests + run: uv run pytest + env: + PYTHONPATH: . + - run: echo "This job's status is ${{ job.status }}."