-
Notifications
You must be signed in to change notification settings - Fork 0
105 lines (92 loc) · 3.15 KB
/
Copy pathci.yml
File metadata and controls
105 lines (92 loc) · 3.15 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: CI
on:
pull_request:
push:
branches:
- main
# Least-privilege default; this workflow only reads the repo.
permissions:
contents: read
jobs:
quality:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
package:
- root
- authplane-mcp
- authplane-fastmcp
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
# AuthPlane/conformance is the public sibling repo carrying the shared
# oauth-sdk-conformance-catalog.yaml. Cloned to $RUNNER_TEMP — outside
# $GITHUB_WORKSPACE — so the catalog stays out of the working tree,
# matching release.yml's invariant. Plain git clone is enough:
# actions/checkout disallows paths outside the workspace, and we don't
# need its auth/persist-credentials features for a public read-only repo.
- name: Clone shared conformance catalog (out of tree)
if: matrix.package == 'root'
run: |
git clone --depth 1 https://github.com/AuthPlane/conformance.git "$RUNNER_TEMP/conformance"
- name: Setup Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python-version }}
- name: Install tooling
run: |
python -m pip install --upgrade pip
pip install build twine
- name: Install package dependencies
run: |
if [ "${{ matrix.package }}" = "root" ]; then
pip install -e ".[dev]"
else
# Adapters depend on authplane; install local SDK package first.
pip install -e .
pip install -e "${{ matrix.package }}[dev]"
fi
- name: Ruff check
run: |
if [ "${{ matrix.package }}" = "root" ]; then
ruff check .
else
ruff check "${{ matrix.package }}"
fi
- name: Ruff format check
run: |
if [ "${{ matrix.package }}" = "root" ]; then
ruff format --check .
else
ruff format --check "${{ matrix.package }}"
fi
- name: Pyright (SDK only)
if: matrix.package == 'root'
run: pyright
- name: Test and coverage
env:
AUTHPLANE_CONFORMANCE_CATALOG: ${{ runner.temp }}/conformance/oauth-sdk-conformance-catalog.yaml
run: |
if [ "${{ matrix.package }}" = "root" ]; then
coverage run -m pytest tests conformance-tests && coverage report
else
cd "${{ matrix.package }}"
coverage run -m pytest tests && coverage report
fi
- name: Build package artifacts
run: |
if [ "${{ matrix.package }}" = "root" ]; then
python -m build
else
cd "${{ matrix.package }}"
python -m build
fi
- name: Validate package metadata
run: |
if [ "${{ matrix.package }}" = "root" ]; then
twine check dist/*
else
twine check "${{ matrix.package }}/dist/*"
fi