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

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