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

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