Skip to content

Revise Cursor plugin installation instructions #18

Revise Cursor plugin installation instructions

Revise Cursor plugin installation instructions #18

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
working-directory: skills/forge-app-builder
run: python -m unittest discover -s tests -v