Compare commits

...

1 Commits

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

22
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,22 @@
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