Files
detektor/.gitea/workflows/build.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 17: mapping key "run" already defined at line 16
Martin Kudlacek 14ac2dc17c WIP
2025-11-14 11:02:52 +01:00

21 lines
370 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 and its dependencies
run: apk add python3
run: pip install -r requirements.txt
- name: Show Python libraries
run: pip list