Files
orchestrator/.gitea/workflows/ci.yml
Dev b6d6b53f39
Some checks failed
CI / test (push) Failing after 18s
CI / test (pull_request) Failing after 8s
ci: add Gitea Actions workflow (pytest) for orchestrator self-hosting
2026-06-04 21:07:02 +03:00

23 lines
559 B
YAML

name: CI
on:
push:
branches: ["feature/**", "bugfix/**", "hotfix/**", "fix/**", "ci/**"]
pull_request:
branches: [main]
jobs:
test:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
python3 -m pip install --user --upgrade pip
python3 -m pip install --user -r requirements.txt
- name: Test
env:
PYTHONPATH: ${{ github.workspace }}
run: |
export PATH="$HOME/.local/bin:$PATH"
python3 -m pytest tests/ -q