Files
detektor/.gitea/workflows/build.yml
Martin Kudlacek afa96cc9c6
Some checks failed
Build Detektor binarie / build_macos (push) Failing after 1m19s
WIP
2025-11-14 12:24:34 +01:00

26 lines
536 B
YAML

name: Build Detektor binarie
on:
push:
branches: [ dev ]
jobs:
build_macos:
runs-on: linux
container: python:3.12-alpine
steps:
- name: Checkout
run: |
apk add git
git clone ${{ gitea.server_url }}/${{ gitea.repository }} .
git checkout ${{ gitea.ref_name }}
- name: Install deps
run: |
python3 -m venv .venv
. .venv/bin/activate
pip install pip setuptools wheel
pip install -r requirements.txt
pip list