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-04-22 22:04:34 dependabot/npm_and_yarn/packages/hydefront/sass-1.87.0 0667950ef8c46f59670ec604c3be6c419a338bde No type coverage information
2025-04-21 22:33:42 2.x-dev 40d9fa4a1734e5d425c40d2e1935a0a4ad9d4531 No type coverage information
2025-04-21 21:12:45 dependabot/npm_and_yarn/packages/hydefront/sass-1.86.3 c0df04356949f8696d383d993a8961b2845d8273 No type coverage information
2025-04-21 21:12:40 dependabot/npm_and_yarn/packages/hyde/tailwindcss-4.1.4 7db2893140715d25c91f5e862d3a7b4786433164 No type coverage information
2025-04-21 21:12:01 dependabot/npm_and_yarn/tailwindcss-4.1.4 1d5e974cdeccf4f3cbf23316af0567ac22533ede No type coverage information

Latest test runs

timestamp branch commit
2025-04-21 19:39:27 master 03841e3e831f98deafe63b905e579bbf2c04e6d7
2025-04-21 19:39:05 master 03841e3e831f98deafe63b905e579bbf2c04e6d7
2025-04-21 19:38:54 master 03841e3e831f98deafe63b905e579bbf2c04e6d7
2025-04-21 19:38:53 master 03841e3e831f98deafe63b905e579bbf2c04e6d7
2025-04-21 19:38:36 master 03841e3e831f98deafe63b905e579bbf2c04e6d7

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"
}