Files
orchestrator/.gitea/workflows/ci.yml
Dev Agent 7bbab9c38b
Some checks failed
CI / test (push) Failing after 9s
CI / test (pull_request) Failing after 9s
test: isolate webhook tests from live Plane API (fix CI)
2026-06-04 22:15:40 +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