-
Notifications
You must be signed in to change notification settings - Fork 7
27 lines (26 loc) · 783 Bytes
/
ci.yml
File metadata and controls
27 lines (26 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
smoke:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install pytest fastmcp httpx requests pynput pydantic
- name: Skill import smoke test
run: python tests/test_skill_imports.py
- name: Skill contract tests
run: python -m pytest tests/test_skill_contracts.py -v
- name: OAuth provider unit test
run: python -m pytest tests/test_oauth_provider.py -v
- name: Retry helper unit test
run: python -m pytest tests/test_retry.py -v