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