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:
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