From 4327549833dffcbdbaf93100fa8eb04f096d7a21 Mon Sep 17 00:00:00 2001 From: Martin Kudlacek Date: Fri, 14 Nov 2025 11:13:16 +0100 Subject: [PATCH] WIP --- .gitea/workflows/build.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 9705a40..e5fc423 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -7,16 +7,17 @@ on: jobs: build_macos: runs-on: macos + steps: + - uses: actions/checkout@v3 - - name: Hello - run: echo "Hello, this is MacOS builder" + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.13" - - name: Install Python - run: apk add python3 py3-pip - - - name: Install Python dependencies - run: pip3 install -r requirements.txt - - - name: Show Python libraries - run: pip3 list + - name: Install deps + run: | + python3 -m venv .venv + . .venv/bin/activate + pip install -r requirements.txt