Files
detektor/.gitea/workflows/build.yml
Martin Kudlacek e8daed091a
Some checks failed
Build Detektor binarie / build_macos (push) Failing after 2s
WIP
2025-11-14 11:07:27 +01:00

26 lines
455 B
YAML

name: Build Detektor binarie
on:
push:
branches: [ dev ]
jobs:
build_macos:
runs-on: macos
steps:
- name: Hello
run: echo "Hello, this is MacOS builder"
- name: Install Python
run: apk add python3
- name: Install PIP
run: python3 -m ensurepip
- name: Install Python dependencies
run: pip3 install -r requirements.txt
- name: Show Python libraries
run: pip3 list