WIP
Some checks failed
Build Detektor binarie / build_macos (push) Failing after 59s

This commit is contained in:
Martin Kudlacek
2025-11-14 11:13:16 +01:00
parent a88a3316ce
commit 4327549833

View File

@@ -7,16 +7,17 @@ on:
jobs: jobs:
build_macos: build_macos:
runs-on: macos runs-on: macos
steps: steps:
- uses: actions/checkout@v3
- name: Hello - name: Set up Python
run: echo "Hello, this is MacOS builder" uses: actions/setup-python@v4
with:
python-version: "3.13"
- name: Install Python - name: Install deps
run: apk add python3 py3-pip run: |
python3 -m venv .venv
- name: Install Python dependencies . .venv/bin/activate
run: pip3 install -r requirements.txt pip install -r requirements.txt
- name: Show Python libraries
run: pip3 list