HydePHP CI Services
HydePHP CI Service vD9EB4B5

About

Welcome to the public frontend for the HydePHP Continuous Integration server!

This website powers many of the custom static analysis tools and code checks run for each commit to the HydePHP/Develop monorepository.

Latest commits

timestamp branch commit type coverage
2025-01-14 21:15:40 dependabot/npm_and_yarn/postcss-8.5.1 cddb0dbe431a8d75fa7e90a65869edb281a93db5 No type coverage information
2025-01-13 21:49:07 dependabot/npm_and_yarn/postcss-8.5.0 229b43f9418b7b60b902c9421ca076386261dc4c No type coverage information
2025-01-09 19:08:27 dependabot/composer/nesbot/carbon-2.72.6 fceaf32d813245bf96c6b7f4550f4402e4417f6e No type coverage information
2025-01-09 19:07:30 dependabot/npm_and_yarn/packages/hydefront/sass-1.83.1 0e907a1b90d992e169d73ab38a15cf320b4c41ad 99.94%
2025-01-09 19:07:18 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0 99.94%

Latest test runs

timestamp branch commit
2025-01-09 19:10:23 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0
2025-01-09 19:10:15 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0
2025-01-09 19:09:52 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0
2025-01-09 19:09:50 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0
2025-01-09 19:09:45 master d9f1a61e3f2c9c796d7c0a967d24d5b000a44db0

API Documentation

Please note that the API is not stable, and may change without notice.

List Commits

Endpoint:

  • HTTP Method: GET
  • URL: /api/commits

Description:

This endpoint retrieves a list of the most recent commits. It returns an array of commit objects, each containing information about the commit, such as SHA, branch, creation date, and type coverage.

Request Parameters:

None

Response:

  • Status Code: 200 (OK)
  • Content Type: JSON
  • Response Body Example:
[
    {
        "sha": "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d",
        "branch": "master",
        "created_at": "2023-11-08 12:34:56",
        "type_coverage": "99.60"
    },
    {
        "sha": "7c211433f02071597741e6ff5a8ea34789abbf43",
        "branch": "feature/example",
        "created_at": "2023-11-07 14:22:10",
        "type_coverage": "100.00"
    }
]

Please note that this is limited to the last 25 commits for unauthenticated users. Need more? Please contact us.

Show Commit Details

Endpoint:

  • HTTP Method: GET
  • URL: /api/commits/{commit}

Description:

This endpoint retrieves details of a specific commit identified by its unique sha identifier. It returns information about the specified commit, including SHA, branch, creation date, and type coverage.

Request Parameters:

  • {commit}: The unique identifier of the commit.

Response:

  • Status Code: 200 (OK)
  • Content Type: JSON
  • Response Body Example:
{
    "sha": "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d",
    "branch": "master",
    "created_at": "2023-11-08 12:34:56",
    "type_coverage": "100.00"
}