{"id":18036082,"url":"https://github.com/kjuly/swift-ci","last_synced_at":"2026-01-26T08:11:16.658Z","repository":{"id":212593134,"uuid":"724913840","full_name":"Kjuly/swift-ci","owner":"Kjuly","description":"Some reusable CI Workflows for app development in Swift (also including Objective-C).","archived":false,"fork":false,"pushed_at":"2025-10-26T14:05:30.000Z","size":17,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-26T15:03:21.870Z","etag":null,"topics":["ci","continuous-integration","github-action","swift","swiftlint","unit-test","workflow"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Kjuly.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-29T03:30:19.000Z","updated_at":"2025-10-26T14:05:21.000Z","dependencies_parsed_at":"2023-12-15T05:25:24.071Z","dependency_job_id":"fbfdd8f7-8536-431e-a58b-2f082f8cce8d","html_url":"https://github.com/Kjuly/swift-ci","commit_stats":null,"previous_names":["kjuly/swift-ci"],"tags_count":8,"template":false,"template_full_name":null,"purl":"pkg:github/Kjuly/swift-ci","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kjuly%2Fswift-ci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kjuly%2Fswift-ci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kjuly%2Fswift-ci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kjuly%2Fswift-ci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kjuly","download_url":"https://codeload.github.com/Kjuly/swift-ci/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kjuly%2Fswift-ci/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28770233,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T07:45:00.504Z","status":"ssl_error","status_checked_at":"2026-01-26T07:45:00.070Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ci","continuous-integration","github-action","swift","swiftlint","unit-test","workflow"],"created_at":"2024-10-30T12:11:31.215Z","updated_at":"2026-01-26T08:11:16.653Z","avatar_url":"https://github.com/Kjuly.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# swift-ci\nSome reusable CI Workflows for app development in Swift (also including Objective-C).\n\n## Usage for \"unit-tests.yml\"\n\n```unit-tests-sample.yml\nname: Unit Tests\n\non:\n  push:\n\n  pull_request:\n\njobs:\n  call-reusable-workflow-to-test:\n    uses: Kjuly/swift-ci/.github/workflows/unit-tests.yml@main\n    with:\n      use_xcodebuild: true\n      platforms: 'iOS,watchOS,macOS'\n    secrets: # Required only if need to access a private repo.\n      token: ${{ secrets.YOUR_GITHUB_ACTION_TOKEN }} # Replace the `YOUR_GITHUB_ACTION_TOKEN` with your own.\n\n```\n\n| Options (with)   | Type    | Required | Default | Description\n| ---------------- | ------- | -------- |--- | ---\n| os               | string  | false    | \"\" (auto) | Preferred runner OS, e.g. \"macos-latest\", \"ubuntu-latest\".\n| use_xcodebuild   | boolean | false    | false | Use 'xcodebuild test'; if not, will use 'swift test'.\n| scheme           | string  | false    | (repo name) | The Xcode scheme for testing.\n| platforms        | string  | false    | \"iOS\" | Paltform destinations to do testing, e.g. \"iOS,watchOS,macOS\".\n| xcode_version    | string  | false    | \"latest-stable\" | Specify the Xcode version to use, e.g., \"26.0\".\n| iphone_simulator | string  | false    | \"\" | The name of the iPhone simulator to do testing for iOS. e.g., 'iPhone 17 Pro'.\n| watch_simulator  | string  | false    | \"\" | The name of the Apple Watch simulator to do testing for watchOS. e.g., 'Apple Watch Series 10 (46mm)'.\n\n| Secrets (secrets) | Type    | Required | Description\n| ----------------- | ------- | -------- | ---\n| token             | string  | false    | Github action token secrect, it's required if you need to access a private repo under the same user/org scope.\n\n## Usage for \"swift-lint.yml\"\n\n```swift-lint-sample.yml\nname: Swift Lint\n\non:\n  push:\n\n  pull_request:\n    paths:\n      - '.swiftlint.yml'\n      - '**/*.swift'\n\njobs:\n  call-reusable-workflow-to-swift-lint:\n    uses: Kjuly/swift-ci/.github/workflows/swift-lint.yml@main\n    with:\n      use_default_config: true\n      force_exclude: true\n```\n\n| Options            | Type    | Required | Default | Description\n| ------------------ | ------- | -------- |-------- | ---\n| use_default_config | boolean | false    | false   | Whether use the default swiftlint.yml config file.\n| force_exclude      | boolean | false    | false   | Whether exclude files in config `excluded` even if their paths are explicitly specified.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkjuly%2Fswift-ci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkjuly%2Fswift-ci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkjuly%2Fswift-ci/lists"}