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