Skip to content

chore(plugin): retire .claude-plugin/ references (GRA-1249 / epic GRA… #586

chore(plugin): retire .claude-plugin/ references (GRA-1249 / epic GRA…

chore(plugin): retire .claude-plugin/ references (GRA-1249 / epic GRA… #586

Workflow file for this run

name: SDK CI
on:
push:
branches: [main]
paths:
- "Gradata/**"
- ".github/workflows/sdk-ci.yml"
pull_request:
paths:
- "Gradata/**"
- ".github/workflows/sdk-ci.yml"
concurrency:
group: sdk-ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: pytest (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12"]
defaults:
run:
working-directory: Gradata
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dev dependencies
run: pip install -e ".[dev]"
- name: Run pytest
run: python -m pytest tests/ -q