dev-workflow

Installation
SKILL.md

Development workflow – Contentstack Utils Swift

When to use

  • Setting up locally, opening a PR, or aligning with CI.
  • Answering “how do we run tests?” or “which branch targets master?”

Branches

  • Use feature branches (e.g. feat/..., fix/..., ticket branches).
  • CI runs on push to master and on pull requests targeting master or next (.github/workflows/ci.yml).
  • Merges into master may be gated: PRs whose base is master are often expected to come from staging; other heads may fail the check-branch workflow (.github/workflows/check-branch.yml). Confirm with your team before opening PRs to master.

Running tests and build

  • SPM: swift build, swift test
  • CI-style Xcode (iOS Simulator):
    xcodebuild -project "ContentstackUtils.xcodeproj" -scheme "ContentstackUtils-Package" -destination "OS=13.4.1,name=iPhone 11 Pro" test
    Adjust -destination for your local Xcode/Simulator.
Installs
1
GitHub Stars
1
First Seen
Jul 16, 2026
dev-workflow — contentstack/contentstack-utils-swift