Files
detektor/.gitea/workflows/build.yml
Martin Kudlacek 989062e5c3
Some checks failed
Build Detektor binarie / build_macos (push) Failing after 6s
WIP
2025-11-14 11:03:38 +01:00

23 lines
392 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 Python dependencies
run: pip install -r requirements.txt
- name: Show Python libraries
run: pip list